Files
2026-04-13 08:19:53 +08:00

6 lines
185 B
TypeScript

import { IterateeShorthand } from './IterateeShorthand.mjs';
type ValueKeyIteratee<T> = ((value: T, key: string) => unknown) | IterateeShorthand<T>;
export type { ValueKeyIteratee };