@metamask/snaps-sdk
Version:
A library containing the core functionality for building MetaMask Snaps
16 lines • 456 B
text/typescript
import type { Json } from "@metamask/utils";
/**
* The request parameters for the `snap_resolveInterface` method.
*
* @property id - The interface id.
* @property value - The value to resolve the interface with.
*/
export type ResolveInterfaceParams = {
id: string;
value: Json;
};
/**
* The result returned by the `snap_resolveInterface` method.
*/
export type ResolveInterfaceResult = null;
//# sourceMappingURL=resolve-interface.d.cts.map