@gatling.io/http
Version:
Gatling JS is a JavaScript/TypeScript interface for the [Gatling load testing tool](https://gatling.io/).
10 lines (9 loc) • 358 B
TypeScript
import { Wrapper } from "@gatling.io/core";
import { HttpHeaders } from "../headers";
import { RequestBody } from "./body";
import JvmRequest = io.gatling.http.client.Request;
export interface Request extends Wrapper<JvmRequest> {
headers(): HttpHeaders;
body(): RequestBody;
}
export declare const wrapRequest: (_underlying: JvmRequest) => Request;