Spaces:
Sleeping
Sleeping
File size: 412 Bytes
fea495a | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import type { ComponentModule } from './types';
interface LoadableOptions {
loader?: () => Promise<React.ComponentType<any> | ComponentModule<any>>;
loading?: React.ComponentType<any> | null;
ssr?: boolean;
modules?: string[];
}
declare function Loadable(options: LoadableOptions): {
(props: any): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default Loadable;
|