@gatling.io/http
Version:
Gatling JS is a JavaScript/TypeScript interface for the [Gatling load testing tool](https://gatling.io/).
10 lines (9 loc) • 352 B
TypeScript
import { Wrapper } from "@gatling.io/core";
import JvmResponseBody = io.gatling.http.response.ResponseBody;
export interface ResponseBody extends Wrapper<JvmResponseBody> {
bytes(): number[];
chars(): string[];
length(): number;
string(): string;
}
export declare const wrapResponseBody: (_underlying: JvmResponseBody) => ResponseBody;