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/ObjectIteratee.d.mts
T

8 lines
405 B
TypeScript

import { IterateeShorthand } from './IterateeShorthand.mjs';
import { ObjectIterator } from './ObjectIterator.mjs';
type ObjectIteratee<TObject> = ObjectIterator<TObject, unknown> | IterateeShorthand<TObject[keyof TObject]>;
type ObjectIterateeCustom<TObject, TResult> = ObjectIterator<TObject, TResult> | IterateeShorthand<TObject[keyof TObject]>;
export type { ObjectIteratee, ObjectIterateeCustom };