v8hd
Version:
Control interface for Roland V-8HD video switchers
14 lines (13 loc) • 551 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TransitionType = void 0;
/**
* Enum representing the available transition types on Roland V-8HD
*/
var TransitionType;
(function (TransitionType) {
/** Mix transition - crossfade between sources */
TransitionType[TransitionType["MIX"] = 0] = "MIX";
/** Wipe transition - one source replaces another with a moving boundary */
TransitionType[TransitionType["WIPE"] = 1] = "WIPE";
})(TransitionType || (exports.TransitionType = TransitionType = {}));