import { State } from "../../state/state.js"; import { Conditions } from "../conditions.js"; import { ConditionsContextBase } from "../types.js"; type BaseConditions = Conditions>; /** * Helper type for `test().test(callback)` * where you only need `State` in the context. */ export type BaseAssertionTester = Parameters>["test"]>[0]; export {};