TypeScript/tests/cases/fourslash/tsxCompletionOnClosingTag1.ts

14 lines
349 B
TypeScript

/// <reference path='fourslash.ts' />
//@Filename: file.tsx
//// declare module JSX {
//// interface Element { }
//// interface IntrinsicElements {
//// div: { ONE: string; TWO: number; }
//// }
//// }
//// var x1 = <div><//**/
goTo.marker();
verify.completionListCount(1);
verify.completionListContains('div');