mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 14:14:26 +07:00
11 lines
240 B
TypeScript
11 lines
240 B
TypeScript
|
// https://stackoverflow.com/questions/44717164/unable-to-import-svg-files-in-typescript
|
||
|
declare module '*.svg' {
|
||
|
const content: any;
|
||
|
export default content;
|
||
|
}
|
||
|
|
||
|
declare module '*.png' {
|
||
|
const content: any;
|
||
|
export default content;
|
||
|
}
|