Skip to content
Snippets Groups Projects
custom.d.ts 183 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
    }