UNPKG

atem-connection

Version:

Typescript Node.js library for connecting with an ATEM switcher.

16 lines 650 B
/// <reference types="node" /> import { DeserializedCommand } from '../../CommandBase'; import { AtemState } from '../../../state'; export interface FadeToBlackProps { isFullyBlack: boolean; inTransition: boolean; remainingFrames: number; } export declare class FadeToBlackStateCommand extends DeserializedCommand<FadeToBlackProps> { static readonly rawName = "FtbS"; readonly mixEffect: number; constructor(mixEffect: number, properties: FadeToBlackProps); static deserialize(rawCommand: Buffer): FadeToBlackStateCommand; applyToState(state: AtemState): string; } //# sourceMappingURL=FadeToBlackStateCommand.d.ts.map