infobip-rtc
Version:
Infobip RTC JavaScript SDK - Infobip WebRTC API Implementation
8 lines • 321 B
JavaScript
import { AbstractCapturer } from "./AbstractCapturer";
export class DefaultLocalCapturer extends AbstractCapturer {
async takeScreenshot(identity, videoType) {
const canvas = await this.getCanvas(identity, videoType);
return canvas.toDataURL();
}
}
//# sourceMappingURL=DefaultLocalCapturer.js.map