@gatling.io/core
Version:
Gatling JS is a JavaScript/TypeScript interface for the [Gatling load testing tool](https://gatling.io/).
18 lines (17 loc) • 677 B
TypeScript
import { CheckBuilderValidate } from "./validate";
import JvmCheckBuilderFind = io.gatling.javaapi.core.CheckBuilder$Find;
/**
* Step 1 of the Check DSL when the check can only return one single value Immutable, so all
* methods return a new occurrence and leave the original unmodified.
*
* @typeParam X - the type of Java values the check can extract
*/
export interface CheckBuilderFind<X> extends CheckBuilderValidate<X> {
/**
* Target a single/first value
*
* @returns the next Check DSL step
*/
find(): CheckBuilderValidate<X>;
}
export declare const wrapCheckBuilderFind: <X>(_underlying: JvmCheckBuilderFind<X>) => CheckBuilderFind<X>;