mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 14:14:26 +07:00
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';
|