@pfantato/printful-ts
Version:
Typescript SDK to integrate with Printful
15 lines (14 loc) • 431 B
TypeScript
import { z } from 'zod';
export declare const ColorValue: z.ZodEffects<z.ZodString, string, string>;
export type ColorValue = z.infer<typeof ColorValue>;
export declare const Color: z.ZodObject<{
name: z.ZodString;
value: z.ZodEffects<z.ZodString, string, string>;
}, "strip", z.ZodTypeAny, {
value?: string;
name?: string;
}, {
value?: string;
name?: string;
}>;
export type Color = z.infer<typeof Color>;