Skip to content
Snippets Groups Projects
custom.d.ts 279 B
Newer Older
  • Learn to ignore specific revisions
  • declare module '*.svg' {
      const content: any
      export default content
    }
    
    Yoan VALLET's avatar
    Yoan VALLET committed
    
    declare module '*.scss' {
      const styles: { [className: string]: string }
      export default styles
    }
    
    declare module 'react-datepicker' {
    
    Rémi PAILHAREY's avatar
    Rémi PAILHAREY committed
      const datepicker: any
      export default datepicker