UNPKG

@arco-design/web-react

Version:

Arco Design React UI Library.

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 {};