source: node_modules/es-toolkit/dist/compat/_internal/ObjectIteratee.d.ts

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 403 bytes
Line 
1import { IterateeShorthand } from './IterateeShorthand.js';
2import { ObjectIterator } from './ObjectIterator.js';
3
4type ObjectIteratee<TObject> = ObjectIterator<TObject, unknown> | IterateeShorthand<TObject[keyof TObject]>;
5type ObjectIterateeCustom<TObject, TResult> = ObjectIterator<TObject, TResult> | IterateeShorthand<TObject[keyof TObject]>;
6
7export type { ObjectIteratee, ObjectIterateeCustom };
Note: See TracBrowser for help on using the repository browser.