TypeScript/tests/baselines/reference/tsxReactEmit6.types

49 lines
816 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/react-consumer.tsx ===
namespace M {
>M : typeof M
export var React: any;
>React : any
}
namespace M {
>M : typeof M
// Should emit M.React.createElement
// and M.React.__spread
var foo: any;
>foo : any
var spread1 = <div x='' {...foo} y='' />;
>spread1 : JSX.Element
><div x='' {...foo} y='' /> : JSX.Element
>div : any
>x : string
>foo : any
>y : string
// Quotes
var x = <div>This "quote" thing</div>;
>x : JSX.Element
><div>This "quote" thing</div> : JSX.Element
>div : any
>div : any
}