UNPKG
@tutkli/jikan-ts
Version:
latest (3.0.0)
3.0.0
2.2.0
2.1.0
2.0.2
2.0.1
2.0.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
0.6.62
0.6.61
0.6.6
0.6.5
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.5.52
0.5.51
0.5.42
0.5.41
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
Node.js wrapper for the Jikan API with built-in typings.
github.com/tutkli/jikan-ts
tutkli/jikan-ts
@tutkli/jikan-ts
/
dist
/
models
/
Person
/
person-params.model.d.ts
11 lines
(10 loc)
•
298 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
type
{
SortOptions
}
from
'../Params'
;
export
type
PeopleSearchOrder
=
'mal_id'
|
'name'
|
'birthday'
|
'favorites'
;
export
interface
PeopleSearchParams
{
page
?:
number
;
limit
?:
number
;
q
?:
string
;
order_by
?:
PeopleSearchOrder
;
sort
?:
SortOptions
;
letter
?:
string
; }