9 lines
261 B
JavaScript
9 lines
261 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Format = void 0;
|
|
var Format;
|
|
(function (Format) {
|
|
Format["Json"] = "json";
|
|
Format["Flatbuffers"] = "flatbuffers";
|
|
})(Format = exports.Format || (exports.Format = {}));
|