UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

7 lines (6 loc) 284 B
import { ListIterator } from "./ListIterator.js"; import { IterateeShorthand } from "./IterateeShorthand.js"; //#region src/compat/_internal/ListIterateeCustom.d.ts type ListIterateeCustom<T, R> = ListIterator<T, R> | IterateeShorthand<T>; //#endregion export { ListIterateeCustom };