DenReg/jsx/types.ts
Fabian Stamm 2af5d4f823
Some checks failed
continuous-integration/drone/push Build is failing
Move to own JSX implementation
2021-01-11 14:55:54 +01:00

12 lines
166 B
TypeScript

declare namespace JSX {
interface IntrinsicElements {
[elemName: string]: any;
}
}
declare namespace JSX {
interface ElementClass {
render: any;
}
}