UNPKG

@b3dotfun/anyspend-sdk

Version:

React Hooks and UI Components for AnySpend by B3

11 lines (9 loc) 280 B
import { z } from "zod"; import { zPermit } from "../permit"; export const zSendPermitDataRequest = z.object({ body: z.object({ orderId: z.string(), permitData: zPermit }) }); export type SendPermitDataRequestBody = z.infer<typeof zSendPermitDataRequest.shape.body>;