TypeScript/tests/cases/fourslash/tsxGoToDefinitionUnionElementType1.ts
2017-10-18 15:49:46 -07:00

26 lines
578 B
TypeScript

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