/** * @since 2.0.0 */ import * as Chunk from "./Chunk.js"; import * as Either from "./Either.js"; import * as Equal from "./Equal.js"; import type * as Fiber from "./Fiber.js"; import * as HashSet from "./HashSet.js"; import type * as MutableRef from "./MutableRef.js"; import type * as SortedSet from "./SortedSet.js"; import type * as Types from "./Types.js"; /** * @since 2.0.0 */ export declare const TestAnnotationTypeId: unique symbol; /** * @since 2.0.0 */ export type TestAnnotationTypeId = typeof TestAnnotationTypeId; /** * @since 2.0.0 */ export interface TestAnnotation extends Equal.Equal { readonly [TestAnnotationTypeId]: { readonly _A: Types.Invariant; }; readonly identifier: string; readonly initial: A; combine(a: A, b: A): A; } /** * @since 2.0.0 */ export declare const isTestAnnotation: (u: unknown) => u is TestAnnotation; /** * @since 2.0.0 */ export declare const make: (identifier: string, initial: A, combine: (a: A, b: A) => A) => TestAnnotation; /** * @since 2.0.0 */ export declare const compose: (left: Either.Either, number>, right: Either.Either, number>) => Either.Either, number>; /** * @since 2.0.0 */ export declare const fibers: TestAnnotation>>>, number>>; /** * An annotation which counts ignored tests. * * @since 2.0.0 */ export declare const ignored: TestAnnotation; /** * An annotation which counts repeated tests. * * @since 2.0.0 */ export declare const repeated: TestAnnotation; /** * An annotation which counts retried tests. * * @since 2.0.0 */ export declare const retried: TestAnnotation; /** * An annotation which tags tests with strings. * * @since 2.0.0 */ export declare const tagged: TestAnnotation>; //# sourceMappingURL=TestAnnotation.d.ts.map