TypeScript/tests/cases/fourslash/codeFixClassImplementInterfaceMultipleSignaturesRest1.ts
2018-01-17 15:29:41 -08:00

29 lines
750 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.codeFix({
description: "Implement interface 'I'",
newFileContent:
`interface I {
method(a: number, ...b: string[]): boolean;
method(a: string, ...b: number[]): Function;
method(a: string): Function;
}
class C implements I {
method(a: number, ...b: string[]): boolean;
method(a: string, ...b: number[]): Function;
method(a: string): Function;
method(a: any, ...b?: any[]) {
throw new Error("Method not implemented.");
}
}`,
});