6 lines
250 B
TypeScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
import { PartialShallow } from "./PartialShallow.mjs";
//#region src/compat/_internal/ValueIteratee.d.ts
type ValueIteratee<T> = ((value: T) => unknown) | (PropertyKey | [PropertyKey, any] | PartialShallow<T>);
//#endregion
export { ValueIteratee };