UNPKG

@pfantato/printful-ts

Version:

Typescript SDK to integrate with Printful

15 lines (14 loc) 939 B
import { z } from 'zod'; export declare const ProductOptionsName: z.ZodEnum<["inside_pocket", "stitch_color", "notes", "lifelike", "custom_border_color", "base_color", "trim_color", "color_reduction_mode"]>; export type ProductOptionsName = z.infer<typeof ProductOptionsName>; export declare const ProductOptions: z.ZodObject<{ name: z.ZodEnum<["inside_pocket", "stitch_color", "notes", "lifelike", "custom_border_color", "base_color", "trim_color", "color_reduction_mode"]>; value: z.ZodBoolean; }, "strip", z.ZodTypeAny, { value?: boolean; name?: "inside_pocket" | "stitch_color" | "notes" | "lifelike" | "custom_border_color" | "base_color" | "trim_color" | "color_reduction_mode"; }, { value?: boolean; name?: "inside_pocket" | "stitch_color" | "notes" | "lifelike" | "custom_border_color" | "base_color" | "trim_color" | "color_reduction_mode"; }>; export type ProductOptions = z.infer<typeof ProductOptions>;