unis_crm/frontend1/node_modules/@rc-component/util/lib/hooks/useMemo.d.ts

2 lines
172 B
TypeScript
Raw Normal View History

2026-03-26 09:29:55 +00:00
export default function useMemo<Value, Condition = any[]>(getValue: () => Value, condition: Condition, shouldUpdate: (prev: Condition, next: Condition) => boolean): Value;