TypeScript/tests/baselines/reference/tsxElementResolution5.symbols

14 lines
284 B
Plaintext

=== tests/cases/conformance/jsx/file1.tsx ===
declare module JSX {
>JSX : Symbol(JSX, Decl(file1.tsx, 0, 0))
interface Element { }
>Element : Symbol(Element, Decl(file1.tsx, 0, 20))
}
// OK, but implicit any
<div n='x' />;
>div : Symbol(unknown)
>n : Symbol(unknown)