/*! * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file. */ import { type MultistreamConnectionConfig } from '@webex/internal-media-core'; export type BundlePolicy = MultistreamConnectionConfig['bundlePolicy']; /** * MediaDirection * @typedef {Object} MediaDirection * @property {boolean} sendAudio * @property {boolean} receiveAudio * @property {boolean} sendVideo * @property {boolean} receiveVideo * @property {boolean} sendShare * @property {boolean} receiveShare */ /** * SendOptions * @typedef {Object} SendOptions * @property sendAudio * @property sendVideo * @property sendShare * @property isSharing * @property {Object} sharePreferences */ /** * * @public * @export * Mimic browser APIs as "the ultimate browser". * Handles the quirks of each browser. * Extends and enhances adapter.js, i.e., the "media" file from the web client. */ declare const Media: any; export default Media;