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

19 lines
618 B
TypeScript

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