@metamask/snaps-sdk
Version:
A library containing the core functionality for building MetaMask Snaps
13 lines • 376 B
text/typescript
/**
* An object containing the parameters for the `snap_closeWebSocket` method.
*
* @property id - The ID of the WebSocket connection to close.
*/
export type CloseWebSocketParams = {
id: string;
};
/**
* This method does not return any data, so the result is always `null`.
*/
export type CloseWebSocketResult = null;
//# sourceMappingURL=close-web-socket.d.mts.map