TypeScript/tests/cases/fourslash/codeFixClassImplementInterfaceMultipleSignaturesRest2.ts
2017-03-12 18:52:38 -07:00

19 lines
524 B
TypeScript

/// <reference path='fourslash.ts' />
//// interface I {
//// method(a: number, ...b: string[]): boolean;
//// method(a: string, b: number): Function;
//// method(a: string): Function;
//// }
////
//// class C implements I {[| |]}
verify.rangeAfterCodeFix(`
method(a: number, ...b: string[]): boolean;
method(a: string, b: number): Function;
method(a: string): Function;
method(a: any, b?: any, ...rest?: any[]) {
throw new Error("Method not implemented.");
}
`);