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

29 lines
747 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, ...rest?: any[]) {
throw new Error("Method not implemented.");
}
}`,
});