@pfantato/printful-ts
Version:
Typescript SDK to integrate with Printful
18 lines (17 loc) • 781 B
TypeScript
import { z } from 'zod';
export declare const TechniqueKey: z.ZodEnum<["dtg", "digital", "cut-sew", "uv", "embroidery", "sublimation", "dtfilm"]>;
export type TechniqueKey = z.infer<typeof TechniqueKey>;
export declare const Technique: z.ZodObject<{
key: z.ZodEnum<["dtg", "digital", "cut-sew", "uv", "embroidery", "sublimation", "dtfilm"]>;
display_name: z.ZodString;
is_default: z.ZodBoolean;
}, "strip", z.ZodTypeAny, {
key?: "dtg" | "digital" | "cut-sew" | "uv" | "embroidery" | "sublimation" | "dtfilm";
display_name?: string;
is_default?: boolean;
}, {
key?: "dtg" | "digital" | "cut-sew" | "uv" | "embroidery" | "sublimation" | "dtfilm";
display_name?: string;
is_default?: boolean;
}>;
export type Technique = z.infer<typeof Technique>;