mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 16:40:57 +00:00
6 lines
249 B
TypeScript
6 lines
249 B
TypeScript
import { IterateeShorthand } from "./IterateeShorthand.mjs";
|
|
|
|
//#region src/compat/_internal/ValueIterateeCustom.d.ts
|
|
type ValueIterateeCustom<T, TResult> = ((value: T) => TResult) | IterateeShorthand<T>;
|
|
//#endregion
|
|
export { ValueIterateeCustom }; |