atem-connection
Version:
Typescript Node.js library for connecting with an ATEM switcher.
15 lines • 604 B
TypeScript
/// <reference types="node" />
import { SymmetricalCommand } from '../CommandBase';
import { AtemState } from '../../state';
import { ProtocolVersion } from '../../enums';
export declare class RecordingISOCommand extends SymmetricalCommand<{
recordAllInputs: boolean;
}> {
static readonly rawName = "ISOi";
static readonly minimumVersion = ProtocolVersion.V8_1_1;
constructor(recordAllInputs: boolean);
serialize(): Buffer;
static deserialize(rawCommand: Buffer): RecordingISOCommand;
applyToState(state: AtemState): string;
}
//# sourceMappingURL=RecordingISOCommand.d.ts.map