UNPKG

@tutkli/jikan-ts

Version:

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

11 lines (10 loc) 311 B
import type { SortOptions } from '../Params'; export type ProducersSearchOrder = 'mal_id' | 'count' | 'favorites' | 'established'; export interface ProducersSearchParams { page?: number; limit?: number; q?: string; order_by?: ProducersSearchOrder; sort?: SortOptions; letter?: string; }