TypeScript/tests/cases/fourslash/codeFixClassImplementInterfaceOptionalProperty.ts
2017-06-26 12:33:29 -07:00

13 lines
245 B
TypeScript

/// <reference path='fourslash.ts' />
//// interface IPerson {
//// name: string;
//// birthday?: string;
//// }
////
//// class Person implements IPerson {[| |]}
verify.rangeAfterCodeFix(`
name: string;
birthday?: string;
`);