import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { ExchangesTicker, ExchangesTickerData, ExchangesTickerPatch, ExchangesTickerQuery, ExchangesTickerService } from './ticker.class'; export type { ExchangesTicker, ExchangesTickerData, ExchangesTickerPatch, ExchangesTickerQuery }; export type ExchangesTickerClientService = Pick>, (typeof exchangesTickerMethods)[number]>; export declare const exchangesTickerPath = "exchanges/ticker"; export declare const exchangesTickerMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const exchangesTickerClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [exchangesTickerPath]: ExchangesTickerClientService; } }