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; export { GenresParams, GenresResponse, GenresResponseObject };