import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { StrategiesBacktest, StrategiesBacktestData, StrategiesBacktestPatch, StrategiesBacktestQuery, StrategiesBacktestService } from './backtest.class'; export type { StrategiesBacktest, StrategiesBacktestData, StrategiesBacktestPatch, StrategiesBacktestQuery }; export type StrategiesBacktestClientService = Pick>, (typeof strategiesBacktestMethods)[number]>; export declare const strategiesBacktestPath = "strategies/backtest"; export declare const strategiesBacktestMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const strategiesBacktestClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [strategiesBacktestPath]: StrategiesBacktestClientService; } }