This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
StasisWarden-Legacy/node_modules/es-toolkit/dist/compat/_internal/ObjectIterator.d.ts
T

5 lines
259 B
TypeScript

type ObjectIterator<T, R> = (value: T[keyof T], key: string, collection: T) => R;
type ObjectIteratorTypeGuard<T, U extends T[keyof T]> = (value: T[keyof T], key: string, collection: T) => value is U;
export type { ObjectIterator, ObjectIteratorTypeGuard };