TypeScript/tests/baselines/reference/tsxPreserveEmit3.types
2016-01-01 09:24:07 -08:00

26 lines
465 B
Plaintext

=== tests/cases/conformance/jsx/file.tsx ===
declare module JSX {
>JSX : any
interface Element { }
>Element : Element
interface IntrinsicElements {
>IntrinsicElements : IntrinsicElements
[s: string]: any;
>s : string
}
}
=== tests/cases/conformance/jsx/test.d.ts ===
export var React;
>React : any
=== tests/cases/conformance/jsx/react-consumer.tsx ===
// This import should be elided
import {React} from "./test";
>React : any