UNPKG

@tutkli/jikan-ts

Version:

Node.js wrapper for the Jikan API with built-in typings.

11 lines (10 loc) 298 B
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; }