mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
10 lines
210 B
TypeScript
10 lines
210 B
TypeScript
|
declare module '@metamask/eth-keyring-controller' {
|
||
|
export class KeyringController {
|
||
|
signMessage: (...any) => any;
|
||
|
|
||
|
signPersonalMessage: (...any) => any;
|
||
|
|
||
|
signTypedMessage: (...any) => any;
|
||
|
}
|
||
|
}
|