UNPKG

@metamask/snaps-sdk

Version:

A library containing the core functionality for building MetaMask Snaps

13 lines 337 B
/** * The request parameters for the `wallet_revokeSession` method. * * @property scopes - The scopes to revoke. */ export type RevokeSessionParams = { scopes?: string[]; }; /** * The result returned for the `wallet_revokeSession` method. */ export type RevokeSessionResult = true; //# sourceMappingURL=revoke-session.d.cts.map