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

@@ -2,11 +2,11 @@
/// <reference types="node" />
import type { ServerResponse, IncomingMessage } from 'http';
import type { Writable, Readable } from 'stream';
import { SYMBOL_CLEARED_COOKIES } from 'next/dist/server/api-utils';
import type { NextApiRequestCookies } from 'next/dist/server/api-utils';
import { NEXT_REQUEST_META } from 'next/dist/server/request-meta';
import type { RequestMeta } from 'next/dist/server/request-meta';
import { BaseNextRequest, BaseNextResponse, type FetchMetric } from 'next/dist/server/base-http';
import { SYMBOL_CLEARED_COOKIES } from '../api-utils';
import type { NextApiRequestCookies } from '../api-utils';
import { NEXT_REQUEST_META } from '../request-meta';
import type { RequestMeta } from '../request-meta';
import { BaseNextRequest, BaseNextResponse, type FetchMetric } from './index';
import type { OutgoingHttpHeaders } from 'node:http';
type Req = IncomingMessage & {
[NEXT_REQUEST_META]?: RequestMeta;