6 lines
184 B
TypeScript
6 lines
184 B
TypeScript
import { IterateeShorthand } from './IterateeShorthand.js';
|
|
|
|
type ValueKeyIteratee<T> = ((value: T, key: string) => unknown) | IterateeShorthand<T>;
|
|
|
|
export type { ValueKeyIteratee };
|