UNPKG
@padhariyavishal/nextpress
Version:
latest (1.0.1)
1.0.1
1.0.0
NextJS based CMS Framework.
github.com/vishalpadhariya/nextpress
vishalpadhariya/nextpress
@padhariyavishal/nextpress
/
src
/
collection
/
types.ts
16 lines
(15 loc)
•
295 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export
interface
getCollectionArgs {
id
?:
number
;
s
?:
string
;
ctype
?:
string
;
status
?:
string
;
per_page
?:
number
;
order
?:
string
;
orderby
?:
string
;
by_author
?:
number
|
null
;
by_category
?: {
key
:
string
;
value
:
string
|
number
; };
parent
?:
number
; }