summaryrefslogtreecommitdiff
path: root/web/types/custom.d.ts
blob: b7f740e457f89f6f4c5f6e73a66b8f6f0b71cdbb (plain)
1
2
3
4
5
6
7
8
declare namespace JSX {
  type Element = any;
  type ElementClass = any;
  interface IntrinsicElements {
    [elemName: string]: any;
  }
}