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