UNPKG

kodikwrapper

Version:
14 lines (11 loc) 460 B
import { FilterByExternalDatabase, SharedFields, ExternalDatabaseGenresType, KodikResponse } from './shared-types.js'; import '../types.js'; interface GenresParams extends FilterByExternalDatabase, SharedFields { genres_type?: ExternalDatabaseGenresType; } interface GenresResponseObject { title: string; count: number; } type GenresResponse = KodikResponse<GenresResponseObject[]>; export { GenresParams, GenresResponse, GenresResponseObject };