import { FilterByExternalDatabase, SharedFields, KodikResponse } from './shared-types.js'; import '../types.js'; interface YearsParams extends FilterByExternalDatabase, Omit { } interface YearsResponseObject { title: string; count: number; } type YearsResponse = KodikResponse; export { YearsParams, YearsResponse, YearsResponseObject };