UNPKG

@pfantato/printful-ts

Version:

Typescript SDK to integrate with Printful

30 lines (29 loc) 664 B
import { z } from 'zod'; export declare const GetStoreResponse: z.ZodObject<{ data: z.ZodArray<z.ZodObject<{ id: z.ZodNumber; type: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { type?: string; name?: string; id?: number; }, { type?: string; name?: string; id?: number; }>, "many">; }, "strip", z.ZodTypeAny, { data?: { type?: string; name?: string; id?: number; }[]; }, { data?: { type?: string; name?: string; id?: number; }[]; }>; export type GetStoreResponse = z.infer<typeof GetStoreResponse>;