6 lines
243 B
TypeScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
import { IterateeShorthand } from "./IterateeShorthand.js";
//#region src/compat/_internal/ValueKeyIteratee.d.ts
type ValueKeyIteratee<T> = ((value: T, key: string) => unknown) | IterateeShorthand<T>;
//#endregion
export { ValueKeyIteratee };