UNPKG

infobip-rtc

Version:

Infobip RTC JavaScript SDK - Infobip WebRTC API Implementation

12 lines (11 loc) 558 B
import VideoType from "../../util/VideoType"; import { LocalWebrtcCapturer } from "../LocalWebrtcCapturer"; import { LocalCapturer } from "../LocalCapturer"; export declare class DefaultLocalWebrtcCapturer implements LocalWebrtcCapturer { private capturer; private currentUserIdentity; private counterpartIdentity; constructor(capturer: LocalCapturer, currentUserIdentity: string, counterpartIdentity: string); takeLocalScreenshot(videoType: VideoType): Promise<string>; takeRemoteScreenshot(videoType: VideoType): Promise<string>; }