UNPKG

@pfantato/printful-ts

Version:

Typescript SDK to integrate with Printful

16 lines (15 loc) 324 B
import { z } from 'zod'; export declare const Store: 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; }>; export type Store = z.infer<typeof Store>;