UNPKG

@pfantato/printful-ts

Version:

Typescript SDK to integrate with Printful

59 lines (58 loc) 1.24 kB
import { z } from 'zod'; export declare const InvoiceDocument: z.ZodObject<{ media_type: z.ZodString; content: z.ZodString; _links: z.ZodObject<{ self: z.ZodObject<{ href: z.ZodString; }, "strip", z.ZodTypeAny, { href?: string; }, { href?: string; }>; order: z.ZodObject<{ href: z.ZodString; }, "strip", z.ZodTypeAny, { href?: string; }, { href?: string; }>; }, "strip", z.ZodTypeAny, { self?: { href?: string; }; order?: { href?: string; }; }, { self?: { href?: string; }; order?: { href?: string; }; }>; }, "strip", z.ZodTypeAny, { _links?: { self?: { href?: string; }; order?: { href?: string; }; }; media_type?: string; content?: string; }, { _links?: { self?: { href?: string; }; order?: { href?: string; }; }; media_type?: string; content?: string; }>; export type InvoiceDocument = z.infer<typeof InvoiceDocument>;