@baruchiro/actual-mcp
Version:
Actual Budget MCP server exposing API functionality
9 lines • 360 B
TypeScript
import type { Account, Transaction } from '../../core/types/domain.js';
export declare class BalanceHistoryDataFetcher {
fetchAll(accountId: string | undefined, start: string, end: string): Promise<{
account: Account | undefined;
accounts: Account[];
transactions: Transaction[];
}>;
}
//# sourceMappingURL=data-fetcher.d.ts.map