atem-connection
Version:
Typescript Node.js library for connecting with an ATEM switcher.
11 lines • 409 B
TypeScript
/// <reference types="node" />
import { BasicWritableCommand } from '../CommandBase';
export declare class DownstreamKeyOnAirCommand extends BasicWritableCommand<{
onAir: boolean;
}> {
static readonly rawName = "CDsL";
readonly downstreamKeyerId: number;
constructor(downstreamKeyerId: number, onAir: boolean);
serialize(): Buffer;
}
//# sourceMappingURL=DownstreamKeyOnAirCommand.d.ts.map