atem-connection
Version:
Typescript Node.js library for connecting with an ATEM switcher.
13 lines • 563 B
TypeScript
/// <reference types="node" />
import { DisplayClockTime } from '../../state/displayClock';
import { AtemState } from '../../state';
import { DeserializedCommand } from '../CommandBase';
export declare class DisplayClockCurrentTimeCommand extends DeserializedCommand<{
time: DisplayClockTime;
}> {
static readonly rawName = "DSTV";
constructor(time: DisplayClockTime);
static deserialize(rawCommand: Buffer): DisplayClockCurrentTimeCommand;
applyToState(state: AtemState): string;
}
//# sourceMappingURL=DisplayClockCurrentTimeCommand.d.ts.map