6 lines
193 B
TypeScript
6 lines
193 B
TypeScript
import { PartialShallow } from './PartialShallow.js';
|
|
|
|
type ValueIteratee<T> = ((value: T) => unknown) | (PropertyKey | [PropertyKey, any] | PartialShallow<T>);
|
|
|
|
export type { ValueIteratee };
|