UNPKG

497 BTypeScriptView Raw
1import type { Main } from '../index.js';
2import { testSymbol, type BasePredicate } from './base-predicate.js';
3import type { PredicateOptions } from './predicate.js';
4/**
5@hidden
6*/
7export declare class AnyPredicate<T = unknown> implements BasePredicate<T> {
8 private readonly predicates;
9 private readonly options;
10 constructor(predicates: BasePredicate[], options?: PredicateOptions);
11 [testSymbol](value: T, main: Main, label: string | Function, idLabel: boolean): asserts value;
12}