Skyline/node_modules/ow/dist/predicates/any.d.ts
2021-11-22 17:39:03 +00:00

12 lines
467 B
TypeScript

import { BasePredicate, testSymbol } from './base-predicate';
import { PredicateOptions } from './predicate';
import { Main } from '..';
/**
@hidden
*/
export declare class AnyPredicate<T = unknown> implements BasePredicate<T> {
private readonly predicates;
private readonly options;
constructor(predicates: BasePredicate[], options?: PredicateOptions);
[testSymbol](value: T, main: Main, label: string | Function, idLabel: boolean): asserts value;
}