UNPKG

@hyperbrowser/sdk

Version:

Node SDK for Hyperbrowser API

17 lines (16 loc) 585 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["PRESS_KEYS"] = "press_keys"; ComputerAction["MOVE_MOUSE"] = "move_mouse"; ComputerAction["SCREENSHOT"] = "screenshot"; ComputerAction["SCROLL"] = "scroll"; ComputerAction["TYPE_TEXT"] = "type_text"; })(ComputerAction || (exports.ComputerAction = ComputerAction = {}));