Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
12
node_modules/next/dist/shared/lib/lazy-dynamic/loadable.d.ts
generated
vendored
Normal file
12
node_modules/next/dist/shared/lib/lazy-dynamic/loadable.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue