UNPKG

261 BTypeScriptView Raw
1import { Predicate } from '../predicates/predicate';
2/**
3 * Operator which inverts the following validation.
4 *
5 * @hidden
6 * @param predictate Predicate to wrap inside the operator.
7 */
8export declare const not: <T, P extends Predicate<T>>(predicate: P) => P;