UNPKG

react-datamaps-india

Version:
24 lines (20 loc) 536 B
/** * Default CSS definition for typescript, * will be overridden with file-specific definitions by rollup */ declare module '*.css' { const content: { [className: string]: string } export default content } interface SvgrComponent extends React.StatelessComponent<React.SVGAttributes<SVGElement>> {} declare module '*.json' { const value: any export default value } declare module '*.svg' { const svgUrl: string const svgComponent: SvgrComponent export default svgUrl export { svgComponent as ReactComponent } }