import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../../client'; import type { ExchangesOhlcvHistory, ExchangesOhlcvHistoryData, ExchangesOhlcvHistoryPatch, ExchangesOhlcvHistoryQuery, ExchangesOhlcvHistoryService } from './history.class'; export type { ExchangesOhlcvHistory, ExchangesOhlcvHistoryData, ExchangesOhlcvHistoryPatch, ExchangesOhlcvHistoryQuery }; export type ExchangesOhlcvHistoryClientService = Pick>, (typeof exchangesOhlcvHistoryMethods)[number]>; export declare const exchangesOhlcvHistoryPath = "exchanges/ohlcv/history"; export declare const exchangesOhlcvHistoryMethods: Array; export declare const exchangesOhlcvHistoryClient: (client: ClientApplication) => void; declare module '../../../../client' { interface ServiceTypes { [exchangesOhlcvHistoryPath]: ExchangesOhlcvHistoryClientService; } }