mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-02-20 00:33:07 +01:00
10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
import TrezorConnect from '@trezor/connect-web';
|
|
|
|
declare global {
|
|
interface Window {
|
|
__TREZOR_CONNECT_SRC?: string;
|
|
TrezorConnect?: typeof TrezorConnect;
|
|
router?: any;
|
|
}
|
|
}
|