1 | import type { Predicate } from '../predicates/predicate.js';
|
2 | /**
|
3 | Test 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 | */
|
9 | declare const ofTypeDeepSafe: (object: unknown, predicate: Predicate) => boolean | string;
|
10 | export default ofTypeDeepSafe;
|