swc/crates/swc_ecma_parser/tests/tsc/tsxAttributeResolution11.tsx
2022-02-04 17:08:38 +09:00

30 lines
395 B
TypeScript

//@jsx: preserve
//@module: amd
//@filename: react.d.ts
declare module JSX {
interface Element { }
interface IntrinsicElements {
}
interface ElementAttributesProperty {
props;
}
interface IntrinsicAttributes {
ref?: string;
}
}
//@filename: file.tsx
class MyComponent {
render() {
}
props: {
ref?: string;
}
}
// Should be an OK
var x = <MyComponent bar='world' />;