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