14 lines
370 B
JavaScript
14 lines
370 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.INVOICE_STATUS = void 0;
|
|
exports.INVOICE_STATUS = {
|
|
DRAFT: "Draft",
|
|
PENDING: "Pending",
|
|
PAID: "Paid",
|
|
UNPAID: "Unpaid",
|
|
OVERDUE: "Overdue",
|
|
CANCELLED: "Cancelled",
|
|
REFUNDED: "Refunded",
|
|
COLLECTIONS: "Collections",
|
|
};
|
|
//# sourceMappingURL=contract.js.map
|