import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Custom, CustomData, CustomPatch, CustomQuery, CustomService } from './custom.class'; export type { Custom, CustomData, CustomPatch, CustomQuery }; export type CustomClientService = Pick>, (typeof customMethods)[number]>; export declare const customPath = "custom"; export declare const customMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const customClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [customPath]: CustomClientService; } }