@gatling.io/cli
Version:
Gatling JS is a JavaScript/TypeScript interface for the [Gatling load testing tool](https://gatling.io/).
13 lines (12 loc) • 369 B
TypeScript
import { SimulationFile } from "../simulations";
export interface BundleOptions {
sourcesFolder: string;
protoFolder: string;
bundleFile: string;
protoTargetFolder: string;
postman?: string;
typescript: boolean;
simulations: SimulationFile[];
protocPath: string;
}
export declare const bundle: (options: BundleOptions) => Promise<void>;