6 lines
249 B
TypeScript
6 lines
249 B
TypeScript
|
|
import { IterateeShorthand } from "./IterateeShorthand.mjs";
|
||
|
|
|
||
|
|
//#region src/compat/_internal/ValueIterateeCustom.d.ts
|
||
|
|
type ValueIterateeCustom<T, TResult> = ((value: T) => TResult) | IterateeShorthand<T>;
|
||
|
|
//#endregion
|
||
|
|
export { ValueIterateeCustom };
|