camstreamerlib
Version:
Helper library for CamStreamer ACAP applications.
12 lines (11 loc) • 472 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.twitchSchema = void 0;
const zod_1 = __importDefault(require("zod"));
const streamCommonTypes_1 = require("./streamCommonTypes");
exports.twitchSchema = streamCommonTypes_1.streamCommonSchema.extend({
type: zod_1.default.literal('twitch'),
});