UNPKG

embody

Version:

A digital consciousness training environment

19 lines (13 loc) 429 B
import { RobotUsecase } from './usecase-definitions' class RobotApi { robotUsecase?: RobotUsecase startRecordingScreen (subscriberID: string, callback: (data: any) => void, options?: {}): void { this.robotUsecase!.startRecordingScreen(subscriberID, callback, options || {}) } stopRecordingScreen (subscriberID: string): void { this.robotUsecase!.stopRecordingScreen(subscriberID) } } export { RobotApi }