UNPKG
k6-node
Version:
latest (0.3.1)
0.3.1
0.0.2
0.0.1
CLI tool that enables k6 installation via npm packages
k6-node
/
dist
/
k6path.d.ts
11 lines
(10 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * Gets the k6 binary based on: * - configuration (.k6path file) * - or installed binary */
export
declare
const
getK6BinaryPath
:
() =>
Promise
<
string
>;
/** * */
export
declare
const
detectPlatform
:
() =>
"windows"
|
"macos"
|
"linux"
;