How to write Definition File for React JSX
问题 I want to write a custom definition file for Summernote.jsx so that i dont get react-summernote module not found i have written declare var ReactSummernote: JSX.ElementClass; declare module "react-summernote" { export default ReactSummernote; } and imported this as import ReactSummernote from 'react-summernote'; but got an error saying "JSX element type 'ReactSummernote' does not have any construct or call signatures" on <ReactSummernote /> following is the link Summernote.JSX 回答1: You can