UNPKG

@uipath/robot

Version:

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

14 lines (13 loc) 337 B
/** * Client message data model. */ export declare class ClientMessageData { channelName: string; payload: string; /** * Default constructor * @param channelName Client message channel name * @param payload Client message payload */ constructor(channelName: string, payload: string); }