4 lines
108 B
TypeScript
4 lines
108 B
TypeScript
type ArrayIterator<T, R> = (value: T, index: number, collection: T[]) => R;
|
|
|
|
export type { ArrayIterator };
|