@metamask/snaps-sdk
Version:
A library containing the core functionality for building MetaMask Snaps
14 lines • 475 B
text/typescript
import type { CreateSessionResult } from "./create-session.cjs";
/**
* The request parameters for the `wallet_getSession` method.
*
* This method does not accept any parameters.
*/
export type GetSessionParams = never;
/**
* The result returned for the `wallet_getSession` method.
*
* @property sessionScopes - The scopes granted for the session.
*/
export type GetSessionResult = Pick<CreateSessionResult, 'sessionScopes'>;
//# sourceMappingURL=get-session.d.cts.map