mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 18:45:38 +00:00
3074e50909
* Create popup window for TREZOR pin. * Address PR feedback. Move pin template into its own file loaded via raw-loader. * Fix PIN not unlocking * Dont minify electron main code
20 lines
308 B
TypeScript
20 lines
308 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;
|
|
}
|
|
|
|
declare module '*.html' {
|
|
const content: string;
|
|
export default content;
|
|
}
|