mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 14:14:26 +07:00
13 lines
298 B
TypeScript
13 lines
298 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';
|
|
|
|
declare module 'localstorage-memory' {
|
|
const memoryStorage: Storage;
|
|
export default memoryStorage;
|
|
}
|