UNPKG

matrix-react-sdk

Version:
6 lines (5 loc) 283 B
import { DependencyList } from "react"; type Fn<T> = () => Promise<T>; export declare function useAsyncMemo<T>(fn: Fn<T>, deps: DependencyList, initialValue: T): T; export declare function useAsyncMemo<T>(fn: Fn<T>, deps: DependencyList, initialValue?: T): T | undefined; export {};