main repo

This commit is contained in:
Basilosaurusrex
2025-11-24 18:09:40 +01:00
parent b636ee5e70
commit f027651f9b
34146 changed files with 4436636 additions and 0 deletions

13
node_modules/next/dist/lib/metadata/metadata.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import type { GetDynamicParamFromSegment } from '../../server/app-render/app-render';
import type { LoaderTree } from '../../server/lib/app-dir-module';
import React from 'react';
export declare function createMetadataComponents({ tree, pathname, searchParams, getDynamicParamFromSegment, appUsingSizeAdjust, errorType, }: {
tree: LoaderTree;
pathname: string;
searchParams: {
[key: string]: any;
};
getDynamicParamFromSegment: GetDynamicParamFromSegment;
appUsingSizeAdjust: boolean;
errorType?: 'not-found' | 'redirect';
}): [React.ComponentType, React.ComponentType];