UNPKG

@uipath/robot

Version:

UiPath Robot javascript SDK enabling web pages to interact with UiPath Robots

17 lines (16 loc) 506 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.JobArguments = void 0; /** * JobArguments sent with the InvokeRobot Request. */ /* @uipath-internal */ var JobArguments = /** @class */ (function () { function JobArguments(inputArgs, internalArgs, jobSource) { this.inputArgs = inputArgs; this.internalArgs = internalArgs; this.jobSource = jobSource; } return JobArguments; }()); exports.JobArguments = JobArguments;