import { EnumBooleanStringifiedExtended } from "../../@types"; import { ACTION } from "../command/action"; import { ICOMMAND } from "../command/icommand"; export declare enum EnumStreamQuality { NONE = "NONE", EXCELLENT = "EXCELLENT", GOOD = "GOOD", BAD = "BAD" } /** * Update incoming stream state. * Server inform you about the state of incoming video audio stream. */ export declare class CMDC_STREAMSTATE implements ICOMMAND { action: ACTION; params: { startTime?: string; bandWith?: string; quality?: EnumStreamQuality; videoWidth?: string; videoHeight?: string; videoFps?: string; hasAudio?: EnumBooleanStringifiedExtended; audioMuted?: EnumBooleanStringifiedExtended; /** * @deprecated/ obsolete */ bandwith?: string; /** * @deprecated/ obsolete */ videoHeigth?: string; }; }