forked from sombochea/verdaccio-ui
8 lines
192 B
TypeScript
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';
|