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
/
sort.schemas.d.ts
6 lines
(5 loc)
•
293 B
TypeScript
View Raw
1
2
3
4
5
6
import
{ z }
from
'zod'
;
export
declare
const
SortDirection
: z.
ZodEnum
<[
"ascending"
,
"descending"
]>;
export
type
SortDirection
= z.
infer
<
typeof
SortDirection
>;
export
declare
const
SortType
: z.
ZodEnum
<[
"new"
,
"rating"
,
"price"
,
"bestseller"
]>;
export
type
SortType
= z.
infer
<
typeof
SortType
>;