@mft/moneyhub-api-client
Version:
Node.JS client for the Moneyhub API
14 lines • 308 B
TypeScript
interface Amount {
currentMonth: number;
previousMonth: number;
}
interface Category extends Amount {
categoryId?: string;
categoryGroup?: string;
}
export interface SpendingAnalysis {
categories: Category[];
total: Amount;
}
export {};
//# sourceMappingURL=spending-analysis.d.ts.map