@uipath/robot
Version:
UiPath Robot javascript SDK enabling web pages to interact with UiPath Robots
12 lines (11 loc) • 355 B
TypeScript
import { InputArgumentSchema } from ".";
/**
* InstallProcessResult returned by the installProcess request.
*/
export declare class InstallProcessResult {
inputArgumentsSchema: InputArgumentSchema[];
/**
* @param inputArgumentsSchema Input arguments schema
*/
constructor(inputArgumentsSchema: InputArgumentSchema[]);
}