|
Last change
on this file since a762898 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago |
|
Added visualizations
|
-
Property mode
set to
100644
|
|
File size:
403 bytes
|
| Line | |
|---|
| 1 | import { IterateeShorthand } from './IterateeShorthand.js';
|
|---|
| 2 | import { ObjectIterator } from './ObjectIterator.js';
|
|---|
| 3 |
|
|---|
| 4 | type ObjectIteratee<TObject> = ObjectIterator<TObject, unknown> | IterateeShorthand<TObject[keyof TObject]>;
|
|---|
| 5 | type ObjectIterateeCustom<TObject, TResult> = ObjectIterator<TObject, TResult> | IterateeShorthand<TObject[keyof TObject]>;
|
|---|
| 6 |
|
|---|
| 7 | export type { ObjectIteratee, ObjectIterateeCustom };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.