Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/RokuDeploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1216,8 +1216,17 @@ export interface TakeScreenshotOptions {
}

export interface GetDeviceInfoOptions {
/**
* The hostname or IP address to use for the device-info URL
*/
host: string;
/**
* The port to use to send the device-info request (defaults to the standard 8060 ECP port)
*/
remotePort?: number;
/**
* The number of milliseconds at which point this request should timeout and return a rejected promise
*/
timeout?: number;
/**
* Should the device-info be enhanced by camel-casing the property names and converting boolean strings to booleans and number strings to numbers?
Expand Down