facturacionelectronicapy-ts-xmlgen
Version:
Genera el contenido del archivo XML del Documento electrónico exigido por la SET
17 lines (16 loc) • 612 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.CreditType = void 0;
const Table_1 = __importDefault(require("../helpers/Table"));
var CreditType;
(function (CreditType) {
CreditType[CreditType["PLAZO"] = 1] = "PLAZO";
CreditType[CreditType["CUOTA"] = 2] = "CUOTA";
})(CreditType || (exports.CreditType = CreditType = {}));
exports.default = new Table_1.default(['_id', 'description'], [
[1, 'Plazo'],
[2, 'Cuota'],
]);