UNPKG

@b3dotfun/anyspend-sdk

Version:

React Hooks and UI Components for AnySpend by B3

10 lines (8 loc) 213 B
import { z } from "zod"; import { zOrder } from "../order"; export const zGetOrderHistoryResponse = z.object({ success: z.boolean(), message: z.string(), data: z.array(zOrder), statusCode: z.number() });