UNPKG

@hyperbrowser/sdk

Version:

Node SDK for Hyperbrowser API

22 lines (21 loc) 854 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ComputerAction = void 0; /** * Computer action types enumeration */ var ComputerAction; (function (ComputerAction) { ComputerAction["CLICK"] = "click"; ComputerAction["DRAG"] = "drag"; ComputerAction["HOLD_KEY"] = "hold_key"; ComputerAction["MOUSE_DOWN"] = "mouse_down"; ComputerAction["MOUSE_UP"] = "mouse_up"; ComputerAction["PRESS_KEYS"] = "press_keys"; ComputerAction["MOVE_MOUSE"] = "move_mouse"; ComputerAction["SCREENSHOT"] = "screenshot"; ComputerAction["SCROLL"] = "scroll"; ComputerAction["TYPE_TEXT"] = "type_text"; ComputerAction["GET_CLIPBOARD_TEXT"] = "get_clipboard_text"; ComputerAction["PUT_SELECTION_TEXT"] = "put_selection_text"; })(ComputerAction || (exports.ComputerAction = ComputerAction = {}));