@metamask/snaps-sdk
Version:
A library containing the core functionality for building MetaMask Snaps
15 lines • 420 B
text/typescript
/**
* The request parameters for the `snap_getClientStatus` method.
*
* This method does not accept any parameters.
*/
export type GetClientStatusParams = never;
/**
* The result returned by the `snap_getClientStatus` method.
*
* It returns an object containing useful information about the client.
*/
export type GetClientStatusResult = {
locked: boolean;
};
//# sourceMappingURL=get-client-status.d.cts.map