actual-mcp
Version:
Actual Budget MCP server exposing API functionality
14 lines • 627 B
TypeScript
import type { MonthData, Account } from '../../types.js';
import type { MonthlySummaryReportData } from './types.js';
export declare class MonthlySummaryReportDataBuilder {
build(start: string, end: string, accountId: string | undefined, accounts: Account[], sortedMonths: MonthData[], averages: {
avgIncome: number;
avgExpenses: number;
avgInvestments: number;
avgTraditionalSavings: number;
avgTotalSavings: number;
avgTraditionalSavingsRate: number;
avgTotalSavingsRate: number;
}): MonthlySummaryReportData;
}
//# sourceMappingURL=report-data-builder.d.ts.map