TypeScript/tests/cases/fourslash/tsxFindAllReferencesUnionElementType1.ts
2017-02-09 12:40:08 -08:00

24 lines
566 B
TypeScript

/// <reference path='fourslash.ts' />
//@Filename: file.tsx
// @jsx: preserve
// @noLib: true
//// declare module JSX {
//// interface Element { }
//// interface IntrinsicElements {
//// }
//// interface ElementAttributesProperty { props; }
//// }
//// function SFC1(prop: { x: number }) {
//// return <div>hello </div>;
//// };
//// function SFC2(prop: { x: boolean }) {
//// return <h1>World </h1>;
//// }
//// var [|SFCComp|] = SFC1 || SFC2;
//// <[|SFCComp|] x={ "hi" } />
verify.rangesReferenceEachOther();