export interface IBridgeMsg { requestId: string; request: string; parameter: object; } export interface IWebexAppsBridge { env: string; name: string; createMeetingClientMessage: (command: string, payload: object) => IBridgeMsg; postMessage: (msg: IBridgeMsg) => void; generateRequestId: () => string; } export type IWindow = Window & { chrome: any; roomos: any; webexAppExtensions: any; webkit: any; webex: any; }; //# sourceMappingURL=bridge.interfaces.d.ts.map