@pfantato/printful-ts
Version:
Typescript SDK to integrate with Printful
14 lines (13 loc) • 400 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Country = exports.CountryState = void 0;
const zod_1 = require("zod");
exports.CountryState = zod_1.z.object({
code: zod_1.z.string(),
name: zod_1.z.string(),
});
exports.Country = zod_1.z.object({
code: zod_1.z.string(),
name: zod_1.z.string(),
states: zod_1.z.array(exports.CountryState),
});