UNPKG

jsonbinpack

Version:

A space-efficient schema-driven binary JSON serialization format based on JSON Schema

15 lines (14 loc) 525 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EncodingType = void 0; var EncodingType; (function (EncodingType) { EncodingType["Integer"] = "integer"; EncodingType["Number"] = "number"; EncodingType["String"] = "string"; EncodingType["Array"] = "array"; EncodingType["Object"] = "object"; EncodingType["Any"] = "any"; EncodingType["Enum"] = "enum"; EncodingType["OneOf"] = "oneOf"; })(EncodingType = exports.EncodingType || (exports.EncodingType = {}));