TypeScript/tests/cases/fourslash/tsxCompletion10.ts

15 lines
348 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');