Files
cfw-autumn/shared/models/attachModels/attachPreviewModels.ts
2025-06-04 07:24:05 +01:00

22 lines
406 B
TypeScript

import { AttachBranch } from "./attachEnums/AttachBranch.js";
export interface PreviewLineItem {
amount: number;
description: string;
price: string;
}
export interface AttachPreview {
branch: AttachBranch;
options: any;
new_items: any;
due_today: {
line_items: PreviewLineItem[];
total: string;
};
due_next_cycle: {
line_items: PreviewLineItem[];
due_at: number;
};
}