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

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

Added visualizations

  • Property mode set to 100644
File size: 405 bytes
Line 
1import { IterateeShorthand } from './IterateeShorthand.mjs';
2import { ObjectIterator } from './ObjectIterator.mjs';
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.