infobip-rtc
Version:
Infobip RTC JavaScript SDK - Infobip WebRTC API Implementation
13 lines (12 loc) • 625 B
TypeScript
import { ServerWebrtcCapturer } from "../ServerWebrtcCapturer";
import VideoType from "../../util/VideoType";
import { FileResponse } from "../FileResponse";
import { ServerCapturer } from "../ServerCapturer";
export declare class DefaultServerWebrtcCapturer implements ServerWebrtcCapturer {
private capturer;
private currentUserIdentity;
private counterpartIdentity;
constructor(capturer: ServerCapturer, currentUserIdentity: string, counterpartIdentity: string);
takeLocalScreenshot(videoType: VideoType): Promise<FileResponse>;
takeRemoteScreenshot(videoType: VideoType): Promise<FileResponse>;
}