mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 19:44:21 +00:00
15 lines
228 B
TypeScript
15 lines
228 B
TypeScript
|
declare module '*.svg' {
|
||
|
const content: any;
|
||
|
export default content;
|
||
|
}
|
||
|
|
||
|
declare module '*.json' {
|
||
|
const content: any;
|
||
|
export default content;
|
||
|
}
|
||
|
|
||
|
declare module '*.png' {
|
||
|
const content: any;
|
||
|
export default content;
|
||
|
}
|