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

24 lines
483 B
TypeScript

//// [tsxAttributeResolution4.tsx]
declare module JSX {
interface Element { }
interface IntrinsicElements {
test1: Attribs1;
}
}
interface Attribs1 {
x(n: string): void;
}
// OK
<test1 {... {x: (n) => 0} } />;
// Error, no member 'len' on 'string'
<test1 {... {x: (n) => n.len} } />;
//// [tsxAttributeResolution4.jsx]
// OK
<test1 {...{ x: function (n) { return 0; } }}/>;
// Error, no member 'len' on 'string'
<test1 {...{ x: function (n) { return n.len; } }}/>;