descargar pdf y fotos

This commit is contained in:
2026-06-09 08:25:57 -05:00
parent 0a9c672c75
commit b19deda02c
4404 changed files with 664668 additions and 84 deletions
+19
View File
@@ -0,0 +1,19 @@
exports.EncodeStream = require('./src/EncodeStream');
exports.DecodeStream = require('./src/DecodeStream');
exports.Array = require('./src/Array');
exports.LazyArray = require('./src/LazyArray');
exports.Bitfield = require('./src/Bitfield');
exports.Boolean = require('./src/Boolean');
exports.Buffer = require('./src/Buffer');
exports.Enum = require('./src/Enum');
exports.Optional = require('./src/Optional');
exports.Reserved = require('./src/Reserved');
exports.String = require('./src/String');
exports.Struct = require('./src/Struct');
exports.VersionedStruct = require('./src/VersionedStruct');
const utils = require('./src/utils');
const NumberT = require('./src/Number');
const Pointer = require('./src/Pointer');
Object.assign(exports, utils, NumberT, Pointer);