UNPKG

@tutkli/jikan-ts

Version:

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

17 lines (16 loc) 374 B
export interface JikanForum { mal_id: number; url: string; title: string; date: string; author_username: string; author_url: string; comments: number; last_comment: { url: string; author_username: string; author_url: string; date: string | null; }; } export type ForumFilter = 'all' | 'episode' | 'other';