UNPKG

@guildxyz/types

Version:

Types related to the Guild.xyz API

14 lines (10 loc) 307 B
import { Schemas } from "../../types"; const shouldFail = [{ type: "ALLOWLIST", data: { addresses: [1] } }]; const shouldPass: Schemas["RequirementCreationPayload"][] = [ { type: "ERC1155", data: { someField: "someValue" } }, ]; export default { name: "Unimplemented", shouldPass, shouldFail, };