@mft/moneyhub-api-client
Version:
Node.JS client for the Moneyhub API
16 lines • 370 B
TypeScript
import type { Amount } from "./balance";
export interface SavingsGoal {
id: string;
name: string;
amount: Amount;
dateCreated: string;
imageUrl?: string;
notes?: string;
progressPercentage?: number;
progressAmount?: Amount;
accounts: {
id: string;
}[];
targetDate?: string;
}
//# sourceMappingURL=savings-goal.d.ts.map