UNPKG

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