mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 09:42:55 +00:00
5 lines
316 B
TypeScript
5 lines
316 B
TypeScript
//#region src/compat/_internal/ObjectIterator.d.ts
|
|
type ObjectIterator<T, R> = (value: T[keyof T], key: string, collection: T) => R;
|
|
type ObjectIteratorTypeGuard<T, U extends T[keyof T]> = (value: T[keyof T], key: string, collection: T) => value is U;
|
|
//#endregion
|
|
export { ObjectIterator, ObjectIteratorTypeGuard }; |