TypeScript/tests/baselines/reference/declFileForInterfaceWithOptionalFunction.js
2014-07-15 13:08:10 -07:00

16 lines
304 B
TypeScript

//// [declFileForInterfaceWithOptionalFunction.ts]
interface I {
foo? (x?);
foo2? (x?: number): number;
}
//// [declFileForInterfaceWithOptionalFunction.js]
//// [declFileForInterfaceWithOptionalFunction.d.ts]
interface I {
foo?(x?: any): any;
foo2?(x?: number): number;
}