mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 22:24:27 +07:00
10 lines
147 B
TypeScript
10 lines
147 B
TypeScript
|
declare module '*.svg' {
|
||
|
const content: string;
|
||
|
export default content;
|
||
|
}
|
||
|
|
||
|
declare module '*.png' {
|
||
|
const value: string;
|
||
|
export = value;
|
||
|
}
|