MyCrypto/common/typescript/custom.d.ts
William O'Beirne 3074e50909 Allow PIN Entry for TREZOR One in App (#1971)
* 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
2018-06-25 14:27:27 -05:00

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;
}