UNPKG

@mft/moneyhub-api-client

Version:
17 lines 401 B
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