@uipath/robot
Version:
UiPath Robot javascript SDK enabling web pages to interact with UiPath Robots
16 lines (15 loc) • 436 B
TypeScript
/**
* ServerFeatures class used to maintain compatibility between different versions of client and server
*/
export declare class ServerFeatures {
private serverFeatures;
jobStatusUsesLongPolling: boolean;
installProcess: boolean;
useGivenJobId: boolean;
internalArguments: boolean;
clientMessage: boolean;
/**
* Default constructor
*/
constructor(serverFeatures: string[]);
}