Edit gitignore file

This commit is contained in:
ParkSuMin
2025-02-24 20:17:54 +03:00
parent 9b16274400
commit d7869378b8
349 changed files with 686 additions and 25860 deletions

View File

@@ -1 +1 @@
export * from 'next/dist/server/future/route-modules/app-page/module'
export * from './module'

View File

@@ -1,18 +1,18 @@
/// <reference types="node" />
import type { IncomingMessage, ServerResponse } from 'http';
import type { AppPageRouteDefinition } from 'next/dist/server/future/route-definitions/app-page-route-definition';
import type RenderResult from 'next/dist/server/render-result';
import type { RenderOpts } from 'next/dist/server/app-render/types';
import type { NextParsedUrlQuery } from 'next/dist/server/request-meta';
import type { LoaderTree } from 'next/dist/server/lib/app-dir-module';
import { renderToHTMLOrFlight } from 'next/dist/server/app-render/app-render';
import { RouteModule, type RouteModuleOptions, type RouteModuleHandleContext } from 'next/dist/server/future/route-modules/route-module';
import * as vendoredContexts from 'next/dist/server/future/route-modules/app-page/vendored/contexts/entrypoints';
import type { AppPageRouteDefinition } from '../../route-definitions/app-page-route-definition';
import type RenderResult from '../../../render-result';
import type { RenderOpts } from '../../../app-render/types';
import type { NextParsedUrlQuery } from '../../../request-meta';
import type { LoaderTree } from '../../../lib/app-dir-module';
import { renderToHTMLOrFlight } from '../../../app-render/app-render';
import { RouteModule, type RouteModuleOptions, type RouteModuleHandleContext } from '../route-module';
import * as vendoredContexts from './vendored/contexts/entrypoints';
/**
* The AppPageModule is the type of the module exported by the bundled app page
* module.
*/
export type AppPageModule = typeof import('next/dist/build/templates/app-page');
export type AppPageModule = typeof import('../../../../build/templates/app-page');
type AppPageUserlandModule = {
/**
* The tree created in next-app-loader that holds component segments and modules

View File

@@ -1,10 +1,10 @@
export * as HeadManagerContext from 'next/dist/shared/lib/head-manager-context.shared-runtime';
export * as ServerInsertedHtml from 'next/dist/shared/lib/server-inserted-html.shared-runtime';
export * as AppRouterContext from 'next/dist/shared/lib/app-router-context.shared-runtime';
export * as HooksClientContext from 'next/dist/shared/lib/hooks-client-context.shared-runtime';
export * as RouterContext from 'next/dist/shared/lib/router-context.shared-runtime';
export * as HtmlContext from 'next/dist/shared/lib/html-context.shared-runtime';
export * as AmpContext from 'next/dist/shared/lib/amp-context.shared-runtime';
export * as LoadableContext from 'next/dist/shared/lib/loadable-context.shared-runtime';
export * as ImageConfigContext from 'next/dist/shared/lib/image-config-context.shared-runtime';
export * as Loadable from 'next/dist/shared/lib/loadable.shared-runtime';
export * as HeadManagerContext from '../../../../../../shared/lib/head-manager-context.shared-runtime';
export * as ServerInsertedHtml from '../../../../../../shared/lib/server-inserted-html.shared-runtime';
export * as AppRouterContext from '../../../../../../shared/lib/app-router-context.shared-runtime';
export * as HooksClientContext from '../../../../../../shared/lib/hooks-client-context.shared-runtime';
export * as RouterContext from '../../../../../../shared/lib/router-context.shared-runtime';
export * as HtmlContext from '../../../../../../shared/lib/html-context.shared-runtime';
export * as AmpContext from '../../../../../../shared/lib/amp-context.shared-runtime';
export * as LoadableContext from '../../../../../../shared/lib/loadable-context.shared-runtime';
export * as ImageConfigContext from '../../../../../../shared/lib/image-config-context.shared-runtime';
export * as Loadable from '../../../../../../shared/lib/loadable.shared-runtime';

View File

@@ -1 +1 @@
export * from 'next/dist/server/future/route-modules/pages/module'
export * from './module'

View File

@@ -1,19 +1,19 @@
/// <reference types="node" />
import type { IncomingMessage, ServerResponse } from 'http';
import type { GetServerSideProps, GetStaticPaths, GetStaticProps, NextComponentType, PageConfig } from 'next/types';
import type { PagesRouteDefinition } from 'next/dist/server/future/route-definitions/pages-route-definition';
import type { NextParsedUrlQuery } from 'next/dist/server/request-meta';
import type { RenderOpts } from 'next/dist/server/render';
import type RenderResult from 'next/dist/server/render-result';
import type { AppType, DocumentType } from 'next/dist/shared/lib/utils';
import { RouteModule, type RouteModuleHandleContext, type RouteModuleOptions } from 'next/dist/server/future/route-modules/route-module';
import { renderToHTML } from 'next/dist/server/render';
import * as vendoredContexts from 'next/dist/server/future/route-modules/pages/vendored/contexts/entrypoints';
import type { GetServerSideProps, GetStaticPaths, GetStaticProps, NextComponentType, PageConfig } from '../../../../../types';
import type { PagesRouteDefinition } from '../../route-definitions/pages-route-definition';
import type { NextParsedUrlQuery } from '../../../request-meta';
import type { RenderOpts } from '../../../render';
import type RenderResult from '../../../render-result';
import type { AppType, DocumentType } from '../../../../shared/lib/utils';
import { RouteModule, type RouteModuleHandleContext, type RouteModuleOptions } from '../route-module';
import { renderToHTML } from '../../../render';
import * as vendoredContexts from './vendored/contexts/entrypoints';
/**
* The PagesModule is the type of the module exported by the bundled pages
* module.
*/
export type PagesModule = typeof import('next/dist/build/templates/pages');
export type PagesModule = typeof import('../../../../build/templates/pages');
/**
* The userland module for a page. This is the module that is exported from the
* page file that contains the page component, page config, and any page data

View File

@@ -1,10 +1,10 @@
export * as RouterContext from 'next/dist/shared/lib/router-context.shared-runtime';
export * as LoadableContext from 'next/dist/shared/lib/loadable-context.shared-runtime';
export * as Loadable from 'next/dist/shared/lib/loadable.shared-runtime';
export * as ImageConfigContext from 'next/dist/shared/lib/image-config-context.shared-runtime';
export * as HtmlContext from 'next/dist/shared/lib/html-context.shared-runtime';
export * as HooksClientContext from 'next/dist/shared/lib/hooks-client-context.shared-runtime';
export * as HeadManagerContext from 'next/dist/shared/lib/head-manager-context.shared-runtime';
export * as AppRouterContext from 'next/dist/shared/lib/app-router-context.shared-runtime';
export * as AmpContext from 'next/dist/shared/lib/amp-context.shared-runtime';
export * as ServerInsertedHtml from 'next/dist/shared/lib/server-inserted-html.shared-runtime';
export * as RouterContext from '../../../../../../shared/lib/router-context.shared-runtime';
export * as LoadableContext from '../../../../../../shared/lib/loadable-context.shared-runtime';
export * as Loadable from '../../../../../../shared/lib/loadable.shared-runtime';
export * as ImageConfigContext from '../../../../../../shared/lib/image-config-context.shared-runtime';
export * as HtmlContext from '../../../../../../shared/lib/html-context.shared-runtime';
export * as HooksClientContext from '../../../../../../shared/lib/hooks-client-context.shared-runtime';
export * as HeadManagerContext from '../../../../../../shared/lib/head-manager-context.shared-runtime';
export * as AppRouterContext from '../../../../../../shared/lib/app-router-context.shared-runtime';
export * as AmpContext from '../../../../../../shared/lib/amp-context.shared-runtime';
export * as ServerInsertedHtml from '../../../../../../shared/lib/server-inserted-html.shared-runtime';

View File

@@ -1,4 +1,4 @@
import type { RouteDefinition } from 'next/dist/server/future/route-definitions/route-definition';
import type { RouteDefinition } from '../route-definitions/route-definition';
/**
* RouteModuleOptions is the options that are passed to the route module, other
* route modules should extend this class to add specific options for their