@gatling.io/cli
Version:
Gatling JS is a JavaScript/TypeScript interface for the [Gatling load testing tool](https://gatling.io/).
15 lines (14 loc) • 491 B
TypeScript
export { versions } from "./versions";
export interface BundleOptions {
gatlingHome: string;
}
export interface BundleInstallOptions extends BundleOptions {
bundleFilePath: string;
}
export interface ResolvedBundle {
graalvmHome: string;
jvmClasspath: string;
protocPath: string;
}
export declare const installBundleFile: (options: BundleInstallOptions) => Promise<ResolvedBundle>;
export declare const resolveBundle: (options: BundleOptions) => Promise<ResolvedBundle>;