UNPKG

xbpr

Version:

xbp react ui by @arco-design/web-react

5 lines (4 loc) 228 B
import { ComponentState, PropsWithoutRef } from 'react'; declare type Dependency<T> = PropsWithoutRef<T> | ComponentState; export default function useComputedState<T>(computed: () => any, deps: Dependency<T>[]): any; export {};