Files
terminal/web/node_modules/react-use/lib/useAsync.d.ts
T

5 lines
341 B
TypeScript

import { DependencyList } from 'react';
import { FunctionReturningPromise } from './misc/types';
export { AsyncState, AsyncFnReturn } from './useAsyncFn';
export default function useAsync<T extends FunctionReturningPromise>(fn: T, deps?: DependencyList): import("./useAsyncFn").AsyncState<import("./misc/types").PromiseType<ReturnType<T>>>;