@mft/moneyhub-api-client
Version:
Node.JS client for the Moneyhub API
17 lines • 401 B
TypeScript
import type { Amount } from "./balance";
declare type PeriodType = "monthly" | "annual";
interface Spending {
date: string;
spent: number;
}
export interface SpendingGoal {
categoryId: string;
dateCreated: string;
periodType: PeriodType;
periodStart: string;
id: string;
amount: Amount;
spending: Spending[];
}
export {};
//# sourceMappingURL=spending-goal.d.ts.map