@pfantato/printful-ts
Version:
Typescript SDK to integrate with Printful
22 lines (21 loc) • 542 B
TypeScript
import { z } from 'zod';
export declare const PrintfulResponseError: z.ZodObject<{
type: z.ZodString;
status: z.ZodNumber;
title: z.ZodString;
detail: z.ZodString;
instance: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
type?: string;
status?: number;
title?: string;
detail?: string;
instance?: string;
}, {
type?: string;
status?: number;
title?: string;
detail?: string;
instance?: string;
}>;
export type PrintfulResponseError = z.infer<typeof PrintfulResponseError>;