UNPKG

@launchmenu/core

Version:

An environment for visual keyboard controlled applets

15 lines 708 B
import { ReactNode } from "react"; import { LFC } from "../../_types/LFC"; import { IDataHook } from "model-react"; /** A model-react loader with standard spinner and error renderer */ export declare const Loader: LFC<{ /** An alias for content */ children?: (hook: IDataHook) => ReactNode; /** The content to show when there are no exceptions and data loaded */ content?: (hook: IDataHook) => ReactNode; /** The time such that if data is older, it will be refreshed */ forceRefreshTime?: number; /** The number of milliseconds to debounce updates, -1 to forward changes synchronously, defaults to 0 */ debounce?: number; }>; //# sourceMappingURL=Loader.d.ts.map