@ledgerhq/connect-kit 1.0.0-beta.6 → 1.0.0-beta.8
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +11 -0
- package/dist/umd/index.d.ts +4 -0
- package/dist/umd/index.js.map +1 -1
- package/dist/umd/providers/Ethereum.d.ts +4 -0
- package/package.json +1 -1
@@ -4,6 +4,10 @@ export declare const LEDGER_CONNECT_ETHEREUM_PROP = "isLedgerConnect";
|
|
4
4
|
export interface EthereumProvider {
|
5
5
|
providers?: EthereumProvider[];
|
6
6
|
request(...args: unknown[]): Promise<unknown>;
|
7
|
+
disconnect?: {
|
8
|
+
(): Promise<void>;
|
9
|
+
};
|
10
|
+
emit(eventName: string | symbol, ...args: any[]): boolean;
|
7
11
|
on(...args: unknown[]): void;
|
8
12
|
removeListener(...args: unknown[]): void;
|
9
13
|
}
|