atem-connection
Version:
Typescript Node.js library for connecting with an ATEM switcher.
12 lines • 477 B
TypeScript
/// <reference types="node" />
import { BasicWritableCommand } from '../../CommandBase';
export declare class MixEffectKeyCutSourceSetCommand extends BasicWritableCommand<{
cutSource: number;
}> {
static readonly rawName = "CKeC";
readonly mixEffect: number;
readonly upstreamKeyerId: number;
constructor(mixEffect: number, upstreamKeyerId: number, cutSource: number);
serialize(): Buffer;
}
//# sourceMappingURL=MixEffectKeyCutSourceSetCommand.d.ts.map