export interface Abilities { /** if a video stream can be started */ video: boolean; /** if text can be send (i.e. when set to false the guest can only be voyeur and can't change from the voyeur mode to the full video chat) */ text: boolean; /** if the guest can reveive audio (means if the sender provides audio) */ audio: boolean; /** if a live preview can be started */ preview: boolean; /** if the guest can switch to private chat */ private: boolean; /** if the guest can switch to private chat * @deprecated use private instead */ single: boolean; /** if the guest can send tips */ tip: boolean; /** if the guest can enable it's camera */ cam2cam: boolean; /** if the guest can enable it's camera * @deprecated use cam2cam instead */ upstream: boolean; }