6 lines
174 B
TypeScript
6 lines
174 B
TypeScript
import { PartialShallow } from './PartialShallow.mjs';
|
|
|
|
type IterateeShorthand<T> = PropertyKey | [PropertyKey, any] | PartialShallow<T>;
|
|
|
|
export type { IterateeShorthand };
|