UNPKG

342 BTypeScriptView Raw
1import type { Predicate } from '../predicates/predicate.js';
2/**
3Test all the values in the object against a provided predicate.
4
5@hidden
6
7@param predicate - Predicate to test every value in the given object against.
8*/
9declare const ofTypeDeepSafe: (object: unknown, predicate: Predicate) => boolean | string;
10export default ofTypeDeepSafe;