Skip to content
Snippets Groups Projects
custom.d.ts 152 B
Newer Older
  • Learn to ignore specific revisions
  • Romain CREY's avatar
    Romain CREY committed
    declare module '*.png' {
      const content: string
      export default content
    }
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
    declare module '*.svg' {
      const content: string
      export default content
    }