create project

This commit is contained in:
ismailsosic
2022-12-27 12:05:56 +01:00
parent 2a33a2d3de
commit cd2143287c
16035 changed files with 2489703 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
import type webpack from 'webpack';
import type { ValueOf } from '../../../shared/lib/constants';
declare const FILE_TYPES: {
readonly layout: "layout";
readonly template: "template";
readonly error: "error";
readonly loading: "loading";
readonly head: "head";
readonly 'not-found': "not-found";
};
declare type ComponentModule = () => any;
declare type ModuleReference = [componentModule: ComponentModule, filePath: string];
export declare type ComponentsType = {
readonly [componentKey in ValueOf<typeof FILE_TYPES>]?: ModuleReference;
} & {
readonly page?: ModuleReference;
};
declare const nextAppLoader: webpack.LoaderDefinitionFunction<{
name: string;
pagePath: string;
appDir: string;
appPaths: string[] | null;
pageExtensions: string[];
rootDir?: string;
tsconfigPath?: string;
isDev?: boolean;
}>;
export default nextAppLoader;