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

15
node_modules/next/dist/build/load-entrypoint.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
/**
* Load the entrypoint file from the ESM directory and performs string
* replacements of the template variables specified in the `replacements`
* argument.
*
* For non-string replacements, the template should use the
* `declare const ${key}: ${type}` syntax. to ensure that the type is correct
* and the typescript can compile. You may have to use `@ts-expect-error` to
* handle replacement values that are related to imports.
*
* @param entrypoint the entrypoint to load
* @param replacements the replacements to perform
* @returns the loaded file with the replacements
*/
export declare function loadEntrypoint(entrypoint: 'pages' | 'pages-api' | 'app-page' | 'app-route', replacements: Record<`VAR_${string}`, string>, injections?: Record<string, string>): Promise<string>;