forked from foliojs/restructure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
19 lines (17 loc) · 895 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);