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

19 lines
497 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) {
throw new Error("Method not implemented.");
}
`);