export interface RTMPRecordingConfig { meetingURL?: string; rtmpURLs?: Array; record: boolean; resolution?: RTMPRecordingResolution; } export interface RTMPRecordingResolution { width: number; height: number; }