mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-11 00:08:30 +01:00
4fb0be3710
* 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;
|
|
}
|