export interface StartStreamConfig { /** set to 'preview' if the chat has been started as a live preview (initial intent.preview is set to true) */ type?: 'default' | 'preview'; /** when set to true the audio stream will not be started (only for JPEG streams) */ noAudio?: boolean; /** additional parameter passed to JPEG / MJPEG streams */ width?: number; /** additional parameter passed to JPEG / MJPEG streams */ height?: number; /** additional parameter passed to JPEG / MJPEG streams */ resizeMode?: string; /** additional parameter passed to JPEG / MJPEG streams */ maxFps?: number; /** if set to true the mobile playlist will be fetched for HLS streams */ mobile?: boolean; }