TypeScript/tests/baselines/reference/specializedSignatureWithOptional.js
2014-09-05 18:44:49 -07:00

6 lines
165 B
TypeScript

//// [specializedSignatureWithOptional.ts]
declare function f(x?: "hi"): void;
declare function f(x?: string): void;
//// [specializedSignatureWithOptional.js]