UNPKG

k6-node

Version:

CLI tool that enables k6 installation via npm packages

11 lines (10 loc) 245 B
/** * 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";