TypeScript/tests/baselines/reference/tsxAttributeResolution6.js
2015-06-18 14:04:11 -07:00

30 lines
439 B
TypeScript

//// [tsxAttributeResolution6.tsx]
declare module JSX {
interface Element { }
interface IntrinsicElements {
test1: { n?: boolean; s?: string};
test2: { n: boolean; };
}
}
// Error
<test1 s />;
<test1 n='true' />;
<test2 />;
// OK
<test1 n />;
<test1 n={false} />;
<test2 n />;
//// [tsxAttributeResolution6.jsx]
// Error
<test1 s=/>;
<test1 n='true'/>;
<test2 />;
// OK
<test1 n=/>;
<test1 n={false}/>;
<test2 n=/>;