mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-10 01:16:39 +02:00
* fix: restore previous invoices page * fix: show previous invoices page if UNLEASH_CLOUD is falsy * fix: use correct amountFormatted invoice field name
9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
export interface IInvoice {
|
|
amountFormatted: string;
|
|
invoicePDF: string;
|
|
invoiceURL: string;
|
|
paid: boolean;
|
|
status: string;
|
|
dueDate?: Date;
|
|
}
|