UNPKG

@metamask/snaps-sdk

Version:

A library containing the core functionality for building MetaMask Snaps

15 lines 406 B
/** * An object containing the parameters for the `snap_cancelBackgroundEvent` * method. */ export type CancelBackgroundEventParams = { /** * The ID of the background event to cancel. */ id: string; }; /** * This method does not return any data, so the result is always `null`. */ export type CancelBackgroundEventResult = null; //# sourceMappingURL=cancel-background-event.d.mts.map