inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

15
node_modules/next/dist/shared/lib/app-dynamic.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
import type React from 'react';
import type { JSX } from 'react';
import type { LoadableGeneratedOptions, DynamicOptionsLoadingProps, Loader, LoaderComponent } from './lazy-dynamic/types';
export { type LoadableGeneratedOptions, type DynamicOptionsLoadingProps, type Loader, type LoaderComponent, };
export type DynamicOptions<P = {}> = LoadableGeneratedOptions & {
loading?: () => JSX.Element | null;
loader?: Loader<P>;
loadableGenerated?: LoadableGeneratedOptions;
modules?: string[];
ssr?: boolean;
};
export type LoadableOptions<P = {}> = DynamicOptions<P>;
export type LoadableFn<P = {}> = (opts: LoadableOptions<P>) => React.ComponentType<P>;
export type LoadableComponent<P = {}> = React.ComponentType<P>;
export default function dynamic<P = {}>(dynamicOptions: DynamicOptions<P> | Loader<P>, options?: DynamicOptions<P>): React.ComponentType<P>;