1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
tests/cases/conformance/jsx/file.tsx(32,45): error TS2532: Object is possibly 'undefined'.
==== tests/cases/conformance/jsx/file.tsx (1 errors) ====
import React = require('react');
interface PoisonedProp {
x: string;
y: 2;
}
class Poisoned extends React.Component<PoisonedProp, {}> {
render() {
return <div>Hello</div>;
}
}
const obj: PoisonedProp = {
x: "hello world",
y: 2
};
// OK
let p = <Poisoned {...obj} />;
class EmptyProp extends React.Component<{}, {}> {
render() {
return <div>Default hi</div>;
}
}
// OK
let j: any;
let e1 = <EmptyProp {...{}} />;
let e2 = <EmptyProp {...j} />
let e3 = <EmptyProp {...{ ref: (input) => { this.textInput = input; } }} />
~~~~
!!! error TS2532: Object is possibly 'undefined'.
let e4 = <EmptyProp data-prop />
let e5 = <EmptyProp {...{ "data-prop": true}} />
|