6 lines
249 B
TypeScript
6 lines
249 B
TypeScript
|
|
import { PartialShallow } from "./PartialShallow.js";
|
||
|
|
|
||
|
|
//#region src/compat/_internal/ValueIteratee.d.ts
|
||
|
|
type ValueIteratee<T> = ((value: T) => unknown) | (PropertyKey | [PropertyKey, any] | PartialShallow<T>);
|
||
|
|
//#endregion
|
||
|
|
export { ValueIteratee };
|