@4players/odin-common
Version:
A collection of commonly used type definitions and utility functions across ODIN web projects
45 lines (44 loc) • 2.16 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.zod = void 0;
exports.zod = require("zod");
__exportStar(require("./schema/serialization"), exports);
__exportStar(require("./schema/token"), exports);
__exportStar(require("./schema/room"), exports);
__exportStar(require("./schema/peer"), exports);
__exportStar(require("./schema/media"), exports);
__exportStar(require("./schema/message"), exports);
__exportStar(require("./schema/webrtc"), exports);
__exportStar(require("./schema/channels"), exports);
__exportStar(require("./rpc/commands"), exports);
__exportStar(require("./rpc/notifications"), exports);
__exportStar(require("./utility/base64"), exports);
__exportStar(require("./utility/bytearray"), exports);
__exportStar(require("./utility/codec"), exports);
__exportStar(require("./utility/iterable"), exports);
__exportStar(require("./utility/environment"), exports);
__exportStar(require("./utility/json"), exports);
__exportStar(require("./utility/msgpack"), exports);
__exportStar(require("./utility/result"), exports);
__exportStar(require("./utility/selector"), exports);
__exportStar(require("./utility/sleep"), exports);
__exportStar(require("./utility/strand"), exports);
__exportStar(require("./utility/url"), exports);
__exportStar(require("./utility/uuid"), exports);
__exportStar(require("./utility/validation"), exports);
__exportStar(require("./utility/log"), exports);
__exportStar(require("./plugin/api"), exports);