TypeScript/tests/cases/fourslash/tsxCompletion1.ts
2015-06-18 14:02:47 -07:00

15 lines
355 B
TypeScript

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