UNPKG
@pfantato/printful-ts
Version:
latest (0.0.1)
0.0.1
Typescript SDK to integrate with Printful
github.com/pfantato/printful-ts
pfantato/printful-ts
@pfantato/printful-ts
/
lib
/
schemas
/
common
/
unit.schema.d.ts
6 lines
(5 loc)
•
264 B
TypeScript
View Raw
1
2
3
4
5
6
import
{ z }
from
'zod'
;
export
declare
const
Unit
: z.
ZodEnum
<[
"inches"
,
"cm"
]>;
export
type
Unit
= z.
infer
<
typeof
Unit
>;
export
declare
const
MeasurementSystem
: z.
ZodEnum
<[
"imperial"
,
"metric"
]>;
export
type
MeasurementSystem
= z.
infer
<
typeof
MeasurementSystem
>;