import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Changelog, ChangelogData, ChangelogPatch, ChangelogQuery, ChangelogService } from './changelog.class'; export type { Changelog, ChangelogData, ChangelogPatch, ChangelogQuery }; export type ChangelogClientService = Pick>, (typeof changelogMethods)[number]>; export declare const changelogPath = "changelog"; export declare const changelogMethods: Array; export declare const changelogClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [changelogPath]: ChangelogClientService; } }