UNPKG

react-use

Version:
4 lines (3 loc) 279 B
import { DependencyList } from 'react'; export { AsyncState, AsyncFn } from './useAsyncFn'; export default function useAsync<Result = any, Args extends any[] = any[]>(fn: (...args: Args | []) => Promise<Result>, deps?: DependencyList): import("./useAsyncFn").AsyncState<Result>;