@uipath/robot
Version:
UiPath Robot javascript SDK enabling web pages to interact with UiPath Robots
17 lines (16 loc) • 503 B
TypeScript
/**
* InputArgumentSchema returned by the installProcess request.
*/
export declare class InputArgumentSchema {
name: string;
type: string;
isRequired: boolean;
hasDefault: boolean;
/**
* @param name Input argument name
* @param type Input argument type
* @param isRequired Input argument is required
* @param hasDefault Input argument has default
*/
constructor(name: string, type: string, isRequired: boolean, hasDefault: boolean);
}