facturacionelectronicapy-ts-xmlgen
Version:
Genera el contenido del archivo XML del Documento electrónico exigido por la SET
17 lines (16 loc) • 905 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.VehicleIdentification = void 0;
const Table_1 = __importDefault(require("../helpers/Table"));
var VehicleIdentification;
(function (VehicleIdentification) {
VehicleIdentification[VehicleIdentification["NUMERO_DE_IDENTIFICACION_DEL_VEHICULO"] = 1] = "NUMERO_DE_IDENTIFICACION_DEL_VEHICULO";
VehicleIdentification[VehicleIdentification["NUMERO_DE_MATRICULA_DEL_VEHICULO"] = 2] = "NUMERO_DE_MATRICULA_DEL_VEHICULO";
})(VehicleIdentification || (exports.VehicleIdentification = VehicleIdentification = {}));
exports.default = new Table_1.default(['_id', 'description'], [
[1, 'Número de identificación del vehículo'],
[2, 'Número de matrícula del vehículo'],
]);