atem-connection
Version:
Typescript Node.js library for connecting with an ATEM switcher.
22 lines • 587 B
TypeScript
export interface MacroPlayerState {
isRunning: boolean;
isWaiting: boolean;
loop: boolean;
macroIndex: number;
}
export interface MacroRecorderState {
isRecording: boolean;
macroIndex: number;
}
export interface MacroPropertiesState {
readonly isUsed: boolean;
readonly hasUnsupportedOps: boolean;
name: string;
description: string;
}
export interface MacroState {
macroPlayer: MacroPlayerState;
macroRecorder: MacroRecorderState;
readonly macroProperties: Array<MacroPropertiesState | undefined>;
}
//# sourceMappingURL=macro.d.ts.map