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

7 lines
153 B
TypeScript

// @declaration: true
interface I {
foo(...x): typeof x;
foo2(a: number, ...x): typeof x;
foo3(b: string, ...x: string[]): typeof x;
}