@uipath/robot
Version:
UiPath Robot javascript SDK enabling web pages to interact with UiPath Robots
20 lines (19 loc) • 663 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InstallProcessResult = void 0;
/**
* InstallProcessResult returned by the installProcess request.
*/
/* @uipath-public */
var InstallProcessResult = /** @class */ (function () {
/**
* @param inputArgumentsSchema Input arguments schema
*/
/* @uipath-internal */
function InstallProcessResult(inputArgumentsSchema) {
this.inputArgumentsSchema = inputArgumentsSchema;
this.inputArgumentsSchema = inputArgumentsSchema || [];
}
return InstallProcessResult;
}());
exports.InstallProcessResult = InstallProcessResult;