UNPKG

@gatling.io/cli

Version:

Gatling JS is a JavaScript/TypeScript interface for the [Gatling load testing tool](https://gatling.io/).

10 lines (9 loc) 289 B
import { SimulationFile } from "../simulations"; export interface BundleOptions { sourcesFolder: string; bundleFile: string; postman?: string; typescript: boolean; simulations: SimulationFile[]; } export declare const bundle: (options: BundleOptions) => Promise<void>;