mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
28 lines
407 B
TypeScript
28 lines
407 B
TypeScript
|
//@jsx: preserve
|
||
|
//@module: amd
|
||
|
|
||
|
//@filename: react.d.ts
|
||
|
declare module JSX {
|
||
|
interface Element { }
|
||
|
interface IntrinsicElements {
|
||
|
}
|
||
|
interface ElementAttributesProperty {
|
||
|
props;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
interface Props {
|
||
|
foo: string;
|
||
|
}
|
||
|
|
||
|
//@filename: file.tsx
|
||
|
export class MyComponent {
|
||
|
render() {
|
||
|
}
|
||
|
|
||
|
props: { foo: string; }
|
||
|
}
|
||
|
|
||
|
<MyComponent foo="bar" />; // ok
|
||
|
<MyComponent foo={0} />; // should be an error
|