RockPaperScissors/node_modules/ow/dist/operators/not.d.ts
2021-11-30 22:03:51 +01:00

9 lines
246 B
TypeScript

import type { Predicate } from '../predicates/predicate';
/**
Operator which inverts the following validation.
@hidden
@param predictate - Predicate to wrap inside the operator.
*/
export declare const not: (predicate: Predicate) => Predicate;