@metamask/snaps-utils
Version:
A collection of utilities for MetaMask Snaps
13 lines • 474 B
JavaScript
import { ComponentOrElementStruct } from "@metamask/snaps-sdk";
import { object, string, union } from "@metamask/superstruct";
export const OnHomePageResponseWithContentStruct = object({
content: ComponentOrElementStruct,
});
export const OnHomePageResponseWithIdStruct = object({
id: string(),
});
export const OnHomePageResponseStruct = union([
OnHomePageResponseWithContentStruct,
OnHomePageResponseWithIdStruct,
]);
//# sourceMappingURL=home-page.mjs.map