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