TypeScript/tests/cases/compiler/declFileForInterfaceWithOptionalFunction.ts
2014-07-12 17:30:19 -07:00

6 lines
90 B
TypeScript

// @declaration: true
interface I {
foo? (x?);
foo2? (x?: number): number;
}