TypeScript/tests/cases/fourslash/tsxCompletion6.ts
2015-07-31 00:36:47 -07:00

16 lines
380 B
TypeScript

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