import { FilterByExternalDatabase, SharedFields, TranslationV1Object, KodikResponse } from './shared-types.mjs'; import '../types.mjs'; interface TranslationsParams { } interface TranslationsV2Params extends FilterByExternalDatabase, Omit { } interface TranslationV2Object { id: number; title: string; count: number; } type TranslationsResponse = TranslationV1Object[]; type TranslationsV2Response = KodikResponse; export { TranslationV2Object, TranslationsParams, TranslationsResponse, TranslationsV2Params, TranslationsV2Response };