//#region src/compat/_internal/ObjectIterator.d.ts type ObjectIterator = (value: T[keyof T], key: string, collection: T) => R; type ObjectIteratorTypeGuard = (value: T[keyof T], key: string, collection: T) => value is U; //#endregion export { ObjectIterator, ObjectIteratorTypeGuard };