mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 12:01:00 +00:00
6 lines
244 B
TypeScript
6 lines
244 B
TypeScript
import { IterateeShorthand } from "./IterateeShorthand.mjs";
|
|
|
|
//#region src/compat/_internal/ValueKeyIteratee.d.ts
|
|
type ValueKeyIteratee<T> = ((value: T, key: string) => unknown) | IterateeShorthand<T>;
|
|
//#endregion
|
|
export { ValueKeyIteratee }; |