@wdio/browserstack-service
Version:
WebdriverIO service for better Browserstack integration
32 lines • 885 B
TypeScript
export default class TrackedContext {
#private;
/**
* Create TrackedContext
* @param {number} string - string Id for context - VERIFY
* @param {number} threadId- Integer Thread Id for context
* @param {number} processId - Integer Process Id for context
* @param {string} type
*/
constructor(id: string, threadId: number, processId: number, type: string);
/**
* get TrackedContext thread id
* @returns {number} - return thread id of context
*/
getThreadId(): number;
/**
* get TrackedContext process id
* @returns {number} - return process id of context
*/
getProcessId(): number;
/**
* get TrackedContext id
* @returns {string} - returns context id
*/
getId(): string;
/**
* get TrackedContext type
* @returns {string}
*/
getType(): string;
}
//# sourceMappingURL=trackedContext.d.ts.map