2026-05-31 13:54:31 +02:00

6 lines
244 B
TypeScript

import { IterateeShorthand } from "./IterateeShorthand.mjs";
//#region src/compat/_internal/ValueKeyIteratee.d.ts
type ValueKeyIteratee<T> = ((value: T, key: string) => unknown) | IterateeShorthand<T>;
//#endregion
export { ValueKeyIteratee };