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