@types/selenium-standalone
Advanced tools
Comparing version 6.15.0 to 6.15.1
@@ -21,61 +21,61 @@ // Type definitions for selenium-standalone 6.15 | ||
export interface InstallOpts { | ||
baseURL?: string; | ||
basePath?: string; | ||
version?: string; | ||
drivers?: { | ||
[browser: string]: { | ||
version?: string; | ||
arch: string | "ia32" | "x64"; | ||
baseURL: string; | ||
} | ||
}; | ||
progressCb?: (totalLength: number, progressLength: number, chunkLength: number) => void; | ||
logger?: (message: string) => void; | ||
requestOpts?: http.RequestOptions | string | URL; | ||
cb?: (error: Error) => void; | ||
baseURL?: string; | ||
basePath?: string; | ||
version?: string; | ||
drivers?: { | ||
[browser: string]: { | ||
version?: string; | ||
arch: string | "ia32" | "x64"; | ||
baseURL: string; | ||
} | ||
}; | ||
progressCb?: (totalLength: number, progressLength: number, chunkLength: number) => void; | ||
logger?: (message: string) => void; | ||
requestOpts?: http.RequestOptions | string | URL; | ||
cb?: (error: Error) => void; | ||
} | ||
export interface StartOpts { | ||
basePath?: string; | ||
version?: string; | ||
drivers?: { | ||
[browser: string]: { | ||
version?: string; | ||
arch: string | "ia32" | "x64"; | ||
baseURL: string; | ||
} | ||
}; | ||
seleniumArgs?: string[]; | ||
javaArgs?: string[]; | ||
spawnOptions?: SpawnOptions; | ||
spawnCb?: (selenium?: ChildProcess) => void; | ||
javaPath?: string; | ||
requestOpts?: http.RequestOptions | string | URL; | ||
cb?: (error: Error, child: ChildProcess) => void; | ||
basePath?: string; | ||
version?: string; | ||
drivers?: { | ||
[browser: string]: { | ||
version?: string; | ||
arch: string | "ia32" | "x64"; | ||
baseURL: string; | ||
} | ||
}; | ||
seleniumArgs?: string[]; | ||
javaArgs?: string[]; | ||
spawnOptions?: SpawnOptions; | ||
spawnCb?: (selenium?: ChildProcess) => void; | ||
javaPath?: string; | ||
requestOpts?: http.RequestOptions | string | URL; | ||
cb?: (error: Error, child: ChildProcess) => void; | ||
} | ||
export interface FsPaths { | ||
[x: string]: any; | ||
chrome?: { | ||
[x: string]: any; | ||
installPath: string; | ||
}; | ||
ie?: { | ||
[x: string]: any; | ||
installPath: string; | ||
}; | ||
edge?: { | ||
[x: string]: any; | ||
installPath: string; | ||
}; | ||
firefox?: { | ||
[x: string]: any; | ||
installPath: string; | ||
}; | ||
selenium?: { | ||
[x: string]: any; | ||
installPath: string; | ||
}; | ||
[x: string]: any; | ||
chrome?: { | ||
[x: string]: any; | ||
installPath: string; | ||
}; | ||
ie?: { | ||
[x: string]: any; | ||
installPath: string; | ||
}; | ||
edge?: { | ||
[x: string]: any; | ||
installPath: string; | ||
}; | ||
firefox?: { | ||
[x: string]: any; | ||
installPath: string; | ||
}; | ||
selenium?: { | ||
[x: string]: any; | ||
installPath: string; | ||
}; | ||
} | ||
export { ChildProcess, SpawnOptions } from "child_process"; |
{ | ||
"name": "@types/selenium-standalone", | ||
"version": "6.15.0", | ||
"version": "6.15.1", | ||
"description": "TypeScript definitions for selenium-standalone", | ||
@@ -14,5 +14,7 @@ "license": "MIT", | ||
"main": "", | ||
"types": "index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", | ||
"directory": "types/selenium-standalone" | ||
}, | ||
@@ -23,4 +25,4 @@ "scripts": {}, | ||
}, | ||
"typesPublisherContentHash": "95856aa1b4a2058f8197cd46c97fec4d29bed018bb9a7232b7e1f3b3a26e8700", | ||
"typeScriptVersion": "2.0" | ||
"typesPublisherContentHash": "8cb1cb880c99aee6cb7547bcbc9ac663687fcd381305cbaaab3e55967068500b", | ||
"typeScriptVersion": "3.0" | ||
} |
@@ -8,10 +8,10 @@ # Installation | ||
# Details | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/selenium-standalone | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/selenium-standalone. | ||
Additional Details | ||
* Last updated: Wed, 20 Jun 2018 00:10:19 GMT | ||
* Dependencies: http, url, child_process, node | ||
### Additional Details | ||
* Last updated: Fri, 15 May 2020 13:12:35 GMT | ||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node) | ||
* Global values: none | ||
# Credits | ||
These definitions were written by Sander de Waal <https://github.com/SanderDeWaal1992>. | ||
These definitions were written by [Sander de Waal](https://github.com/SanderDeWaal1992). |
Sorry, the diff of this file is not supported yet
5116