1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-16 16:29:42 +07:00
verdaccio-ui/types/custom.d.ts
2019-06-24 21:42:34 +01:00

8 lines
192 B
TypeScript

// https://stackoverflow.com/questions/44717164/unable-to-import-svg-files-in-typescript
declare module '*.svg' {
const content: string;
export default content;
}
declare module '*.png';