@cranberry-money/shared-services
Version:
Platform-agnostic API services with pure functions and dependency injection. Includes auth, portfolios, instruments, countries, sectors, and more.
8 lines • 521 B
TypeScript
import { AxiosInstance } from 'axios';
import type { TradeSheet, TradeSheetQueryParams, PaginatedResponse } from '@cranberry-money/shared-types';
type PaginatedTradeSheets = PaginatedResponse<TradeSheet>;
export declare const configureTradeSheets: (apiClient: AxiosInstance) => void;
export declare const getTradeSheets: (params?: TradeSheetQueryParams) => Promise<PaginatedTradeSheets>;
export declare const getTradeSheetByUuid: (uuid: string) => Promise<TradeSheet>;
export {};
//# sourceMappingURL=tradeSheets.d.ts.map