@metamask/snaps-sdk
Version:
A library containing the core functionality for building MetaMask Snaps
15 lines • 427 B
text/typescript
/**
* The request parameters for the `snap_cancelBackgroundEvent` method.
*
* @property id - The id of the background event to cancel.
*/
export type CancelBackgroundEventParams = {
id: string;
};
/**
* The result returned for the `snap_cancelBackgroundEvent` method.
*
* This method does not return anything.
*/
export type CancelBackgroundEventResult = null;
//# sourceMappingURL=cancel-background-event.d.mts.map