vscode-elements / elements

Web component library for developing Visual Studio Code extensions
https://vscode-elements.github.io
MIT License
156 stars 28 forks source link

Export TS declarations for React #206

Open bendera opened 1 month ago

bendera commented 1 month ago
declare global {
  namespace JSX {
    interface IntrinsicElements {
      "my-element": any;
    }
  }
}