@nuxt/schema-nightly 4.3.0-29466587.b5613d25 → 4.3.0-29470213.bdd5155f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +19 -18
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -435,34 +435,35 @@ interface NuxtApp {
|
|
|
435
435
|
pages?: NuxtPage[];
|
|
436
436
|
}
|
|
437
437
|
interface Nuxt {
|
|
438
|
-
__name: string;
|
|
439
|
-
_version: string;
|
|
440
|
-
_ignore?: Ignore;
|
|
441
|
-
_dependencies?: Set<string>;
|
|
442
|
-
|
|
438
|
+
"__name": string;
|
|
439
|
+
"_version": string;
|
|
440
|
+
"_ignore"?: Ignore;
|
|
441
|
+
"_dependencies"?: Set<string>;
|
|
442
|
+
"~runtimeDependencies"?: string[];
|
|
443
|
+
"_debug"?: NuxtDebugContext;
|
|
443
444
|
/** Async local storage for current running Nuxt module instance. */
|
|
444
|
-
_asyncLocalStorageModule?: AsyncLocalStorage<NuxtModule>;
|
|
445
|
+
"_asyncLocalStorageModule"?: AsyncLocalStorage<NuxtModule>;
|
|
445
446
|
/**
|
|
446
447
|
* Module options functions collected from moduleDependencies.
|
|
447
448
|
* @internal
|
|
448
449
|
*/
|
|
449
|
-
_moduleOptionsFunctions?: Map<string | NuxtModule, Array<() => {
|
|
450
|
+
"_moduleOptionsFunctions"?: Map<string | NuxtModule, Array<() => {
|
|
450
451
|
defaults?: Record<string, unknown>;
|
|
451
452
|
overrides?: Record<string, unknown>;
|
|
452
453
|
}>>;
|
|
453
454
|
/** The resolved Nuxt configuration. */
|
|
454
|
-
options: NuxtOptions;
|
|
455
|
-
hooks: Hookable<NuxtHooks>;
|
|
456
|
-
hook: Nuxt["hooks"]["hook"];
|
|
457
|
-
callHook: Nuxt["hooks"]["callHook"];
|
|
458
|
-
addHooks: Nuxt["hooks"]["addHooks"];
|
|
459
|
-
runWithContext: <T extends (...args: any[]) => any>(fn: T) => ReturnType<T>;
|
|
460
|
-
ready: () => Promise<void>;
|
|
461
|
-
close: () => Promise<void>;
|
|
455
|
+
"options": NuxtOptions;
|
|
456
|
+
"hooks": Hookable<NuxtHooks>;
|
|
457
|
+
"hook": Nuxt["hooks"]["hook"];
|
|
458
|
+
"callHook": Nuxt["hooks"]["callHook"];
|
|
459
|
+
"addHooks": Nuxt["hooks"]["addHooks"];
|
|
460
|
+
"runWithContext": <T extends (...args: any[]) => any>(fn: T) => ReturnType<T>;
|
|
461
|
+
"ready": () => Promise<void>;
|
|
462
|
+
"close": () => Promise<void>;
|
|
462
463
|
/** The production or development server. */
|
|
463
|
-
server?: any;
|
|
464
|
-
vfs: Record<string, string>;
|
|
465
|
-
apps: Record<string, NuxtApp>;
|
|
464
|
+
"server"?: any;
|
|
465
|
+
"vfs": Record<string, string>;
|
|
466
|
+
"apps": Record<string, NuxtApp>;
|
|
466
467
|
}
|
|
467
468
|
//#endregion
|
|
468
469
|
//#region src/types/hooks.d.ts
|