Edit gitignore file
This commit is contained in:
6
frontend/style/node_modules/next/dist/server/response-cache/index.d.ts
generated
vendored
6
frontend/style/node_modules/next/dist/server/response-cache/index.d.ts
generated
vendored
@@ -1,6 +1,6 @@
|
||||
import type { IncrementalCache, ResponseCacheEntry, ResponseGenerator, ResponseCacheBase } from 'next/dist/server/response-cache/types';
|
||||
import { RouteKind } from 'next/dist/server/future/route-kind';
|
||||
export * from 'next/dist/server/response-cache/types';
|
||||
import type { IncrementalCache, ResponseCacheEntry, ResponseGenerator, ResponseCacheBase } from './types';
|
||||
import { RouteKind } from '../future/route-kind';
|
||||
export * from './types';
|
||||
export default class ResponseCache implements ResponseCacheBase {
|
||||
private readonly batcher;
|
||||
private previousCacheItem?;
|
||||
|
||||
6
frontend/style/node_modules/next/dist/server/response-cache/types.d.ts
generated
vendored
6
frontend/style/node_modules/next/dist/server/response-cache/types.d.ts
generated
vendored
@@ -1,9 +1,9 @@
|
||||
/// <reference types="node" />
|
||||
/// <reference types="node" />
|
||||
import type { OutgoingHttpHeaders } from 'http';
|
||||
import type RenderResult from 'next/dist/server/render-result';
|
||||
import type { Revalidate } from 'next/dist/server/lib/revalidate';
|
||||
import type { RouteKind } from 'next/dist/server/future/route-kind';
|
||||
import type RenderResult from '../render-result';
|
||||
import type { Revalidate } from '../lib/revalidate';
|
||||
import type { RouteKind } from '../../server/future/route-kind';
|
||||
export interface ResponseCacheBase {
|
||||
get(key: string | null, responseGenerator: ResponseGenerator, context: {
|
||||
isOnDemandRevalidate?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user