@nuxt/devtools-kit-nightly 3.2.4-29562025.ae68d3b → 3.2.4-29562036.34d136f
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.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/shared/{devtools-kit-nightly.Cbdofr7K.d.cts → devtools-kit-nightly.CaEhbN71.d.cts} +2 -16
- package/dist/shared/{devtools-kit-nightly.Cbdofr7K.d.mts → devtools-kit-nightly.CaEhbN71.d.mts} +2 -16
- package/dist/shared/{devtools-kit-nightly.Cbdofr7K.d.ts → devtools-kit-nightly.CaEhbN71.d.ts} +2 -16
- package/dist/types.d.cts +2 -2
- package/dist/types.d.mts +2 -2
- package/dist/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2,7 +2,7 @@ import * as _nuxt_schema from '@nuxt/schema';
|
|
|
2
2
|
import { BirpcGroup } from 'birpc';
|
|
3
3
|
import { ChildProcess } from 'node:child_process';
|
|
4
4
|
import { Result } from 'tinyexec';
|
|
5
|
-
import { M as ModuleCustomTab, N as NuxtDevtoolsInfo, S as SubprocessOptions, T as TerminalState } from './shared/devtools-kit-nightly.
|
|
5
|
+
import { M as ModuleCustomTab, N as NuxtDevtoolsInfo, S as SubprocessOptions, T as TerminalState } from './shared/devtools-kit-nightly.CaEhbN71.cjs';
|
|
6
6
|
import 'vue';
|
|
7
7
|
import 'nuxt/schema';
|
|
8
8
|
import 'unimport';
|
package/dist/index.d.mts
CHANGED
|
@@ -2,7 +2,7 @@ import * as _nuxt_schema from '@nuxt/schema';
|
|
|
2
2
|
import { BirpcGroup } from 'birpc';
|
|
3
3
|
import { ChildProcess } from 'node:child_process';
|
|
4
4
|
import { Result } from 'tinyexec';
|
|
5
|
-
import { M as ModuleCustomTab, N as NuxtDevtoolsInfo, S as SubprocessOptions, T as TerminalState } from './shared/devtools-kit-nightly.
|
|
5
|
+
import { M as ModuleCustomTab, N as NuxtDevtoolsInfo, S as SubprocessOptions, T as TerminalState } from './shared/devtools-kit-nightly.CaEhbN71.mjs';
|
|
6
6
|
import 'vue';
|
|
7
7
|
import 'nuxt/schema';
|
|
8
8
|
import 'unimport';
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as _nuxt_schema from '@nuxt/schema';
|
|
|
2
2
|
import { BirpcGroup } from 'birpc';
|
|
3
3
|
import { ChildProcess } from 'node:child_process';
|
|
4
4
|
import { Result } from 'tinyexec';
|
|
5
|
-
import { M as ModuleCustomTab, N as NuxtDevtoolsInfo, S as SubprocessOptions, T as TerminalState } from './shared/devtools-kit-nightly.
|
|
5
|
+
import { M as ModuleCustomTab, N as NuxtDevtoolsInfo, S as SubprocessOptions, T as TerminalState } from './shared/devtools-kit-nightly.CaEhbN71.js';
|
|
6
6
|
import 'vue';
|
|
7
7
|
import 'nuxt/schema';
|
|
8
8
|
import 'unimport';
|
package/dist/shared/{devtools-kit-nightly.Cbdofr7K.d.cts → devtools-kit-nightly.CaEhbN71.d.cts}
RENAMED
|
@@ -161,7 +161,6 @@ type PackageManagerName = 'npm' | 'yarn' | 'pnpm' | 'bun';
|
|
|
161
161
|
type NpmCommandType = 'install' | 'uninstall' | 'update';
|
|
162
162
|
interface NpmCommandOptions {
|
|
163
163
|
dev?: boolean;
|
|
164
|
-
global?: boolean;
|
|
165
164
|
}
|
|
166
165
|
interface AutoImportsWithMetadata {
|
|
167
166
|
imports: Import[];
|
|
@@ -454,12 +453,6 @@ interface ModuleOptions {
|
|
|
454
453
|
*/
|
|
455
454
|
telemetry?: boolean;
|
|
456
455
|
}
|
|
457
|
-
interface ModuleGlobalOptions {
|
|
458
|
-
/**
|
|
459
|
-
* List of projects to enable devtools for. Only works when devtools is installed globally.
|
|
460
|
-
*/
|
|
461
|
-
projects?: string[];
|
|
462
|
-
}
|
|
463
456
|
interface VSCodeIntegrationOptions {
|
|
464
457
|
/**
|
|
465
458
|
* Enable VS Code Server integration
|
|
@@ -613,12 +606,6 @@ interface TerminalState extends TerminalInfo {
|
|
|
613
606
|
onActionTerminate?: () => Promise<void> | void;
|
|
614
607
|
}
|
|
615
608
|
|
|
616
|
-
interface WizardFunctions {
|
|
617
|
-
enablePages: (nuxt: any) => Promise<void>;
|
|
618
|
-
}
|
|
619
|
-
type WizardActions = keyof WizardFunctions;
|
|
620
|
-
type GetWizardArgs<T extends WizardActions> = WizardFunctions[T] extends (nuxt: any, ...args: infer A) => any ? A : never;
|
|
621
|
-
|
|
622
609
|
interface ServerFunctions {
|
|
623
610
|
getServerConfig: () => NuxtOptions;
|
|
624
611
|
getServerDebugContext: () => Promise<ServerDebugContext | undefined>;
|
|
@@ -663,7 +650,7 @@ interface ServerFunctions {
|
|
|
663
650
|
renameStaticAsset: (token: string, oldPath: string, newPath: string) => Promise<void>;
|
|
664
651
|
telemetryEvent: (payload: object, immediate?: boolean) => void;
|
|
665
652
|
customTabAction: (name: string, action: number) => Promise<boolean>;
|
|
666
|
-
|
|
653
|
+
enablePages: (token: string) => Promise<void>;
|
|
667
654
|
openInEditor: (filepath: string) => Promise<boolean>;
|
|
668
655
|
restartNuxt: (token: string, hard?: boolean) => Promise<void>;
|
|
669
656
|
installNuxtModule: (token: string, name: string, dry?: boolean) => Promise<InstallModuleReturn>;
|
|
@@ -719,7 +706,6 @@ interface NuxtDevtoolsServerContext {
|
|
|
719
706
|
interface NuxtDevtoolsInfo {
|
|
720
707
|
version: string;
|
|
721
708
|
packagePath: string;
|
|
722
|
-
isGlobalInstall: boolean;
|
|
723
709
|
}
|
|
724
710
|
interface InstallModuleReturn {
|
|
725
711
|
configOriginal: string;
|
|
@@ -797,4 +783,4 @@ declare module '@nuxt/schema' {
|
|
|
797
783
|
}
|
|
798
784
|
}
|
|
799
785
|
|
|
800
|
-
export type {
|
|
786
|
+
export type { ServerDebugContext as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleTabInfo as D, ModuleType as E, ModuleVNodeView as F, GitHubContributor as G, HookInfo as H, ImageMeta as I, ModuleView as J, NpmCommandOptions as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, NpmCommandType as O, PluginMetric as P, NuxtDevToolsOptions as Q, NuxtDevtoolsServerContext as R, SubprocessOptions as S, TerminalState as T, NuxtServerData as U, PackageManagerName as V, PackageUpdateInfo as W, Payload as X, PluginInfoWithMetic as Y, RouteInfo as Z, ScannedNitroTasks as _, ServerFunctions as a, ServerDebugModuleMutationRecord as a0, ServerRouteInfo as a1, ServerRouteInput as a2, ServerRouteInputType as a3, ServerTaskInfo as a4, TabCategory as a5, TerminalAction as a6, TerminalBase as a7, TerminalInfo as a8, VSCodeIntegrationOptions as a9, VSCodeTunnelOptions as aa, VueInspectorClient as ab, VueInspectorData as ac, AnalyzeBuildsInfo as b, AssetEntry as c, AssetInfo as d, AssetType as e, AutoImportsWithMetadata as f, CategorizedTabs as g, ClientUpdateEvent as h, CodeServerOptions as i, CodeServerType as j, CodeSnippet as k, CompatibilityStatus as l, ComponentRelationship as m, ComponentWithRelationships as n, InstallModuleReturn as o, InstalledModuleInfo as p, MaintainerInfo as q, ModuleBuiltinTab as r, ModuleCompatibility as s, ModuleIframeTabLazyOptions as t, ModuleIframeView as u, ModuleLaunchAction as v, ModuleLaunchView as w, ModuleOptions as x, ModuleStaticInfo as y, ModuleStats as z };
|
package/dist/shared/{devtools-kit-nightly.Cbdofr7K.d.mts → devtools-kit-nightly.CaEhbN71.d.mts}
RENAMED
|
@@ -161,7 +161,6 @@ type PackageManagerName = 'npm' | 'yarn' | 'pnpm' | 'bun';
|
|
|
161
161
|
type NpmCommandType = 'install' | 'uninstall' | 'update';
|
|
162
162
|
interface NpmCommandOptions {
|
|
163
163
|
dev?: boolean;
|
|
164
|
-
global?: boolean;
|
|
165
164
|
}
|
|
166
165
|
interface AutoImportsWithMetadata {
|
|
167
166
|
imports: Import[];
|
|
@@ -454,12 +453,6 @@ interface ModuleOptions {
|
|
|
454
453
|
*/
|
|
455
454
|
telemetry?: boolean;
|
|
456
455
|
}
|
|
457
|
-
interface ModuleGlobalOptions {
|
|
458
|
-
/**
|
|
459
|
-
* List of projects to enable devtools for. Only works when devtools is installed globally.
|
|
460
|
-
*/
|
|
461
|
-
projects?: string[];
|
|
462
|
-
}
|
|
463
456
|
interface VSCodeIntegrationOptions {
|
|
464
457
|
/**
|
|
465
458
|
* Enable VS Code Server integration
|
|
@@ -613,12 +606,6 @@ interface TerminalState extends TerminalInfo {
|
|
|
613
606
|
onActionTerminate?: () => Promise<void> | void;
|
|
614
607
|
}
|
|
615
608
|
|
|
616
|
-
interface WizardFunctions {
|
|
617
|
-
enablePages: (nuxt: any) => Promise<void>;
|
|
618
|
-
}
|
|
619
|
-
type WizardActions = keyof WizardFunctions;
|
|
620
|
-
type GetWizardArgs<T extends WizardActions> = WizardFunctions[T] extends (nuxt: any, ...args: infer A) => any ? A : never;
|
|
621
|
-
|
|
622
609
|
interface ServerFunctions {
|
|
623
610
|
getServerConfig: () => NuxtOptions;
|
|
624
611
|
getServerDebugContext: () => Promise<ServerDebugContext | undefined>;
|
|
@@ -663,7 +650,7 @@ interface ServerFunctions {
|
|
|
663
650
|
renameStaticAsset: (token: string, oldPath: string, newPath: string) => Promise<void>;
|
|
664
651
|
telemetryEvent: (payload: object, immediate?: boolean) => void;
|
|
665
652
|
customTabAction: (name: string, action: number) => Promise<boolean>;
|
|
666
|
-
|
|
653
|
+
enablePages: (token: string) => Promise<void>;
|
|
667
654
|
openInEditor: (filepath: string) => Promise<boolean>;
|
|
668
655
|
restartNuxt: (token: string, hard?: boolean) => Promise<void>;
|
|
669
656
|
installNuxtModule: (token: string, name: string, dry?: boolean) => Promise<InstallModuleReturn>;
|
|
@@ -719,7 +706,6 @@ interface NuxtDevtoolsServerContext {
|
|
|
719
706
|
interface NuxtDevtoolsInfo {
|
|
720
707
|
version: string;
|
|
721
708
|
packagePath: string;
|
|
722
|
-
isGlobalInstall: boolean;
|
|
723
709
|
}
|
|
724
710
|
interface InstallModuleReturn {
|
|
725
711
|
configOriginal: string;
|
|
@@ -797,4 +783,4 @@ declare module '@nuxt/schema' {
|
|
|
797
783
|
}
|
|
798
784
|
}
|
|
799
785
|
|
|
800
|
-
export type {
|
|
786
|
+
export type { ServerDebugContext as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleTabInfo as D, ModuleType as E, ModuleVNodeView as F, GitHubContributor as G, HookInfo as H, ImageMeta as I, ModuleView as J, NpmCommandOptions as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, NpmCommandType as O, PluginMetric as P, NuxtDevToolsOptions as Q, NuxtDevtoolsServerContext as R, SubprocessOptions as S, TerminalState as T, NuxtServerData as U, PackageManagerName as V, PackageUpdateInfo as W, Payload as X, PluginInfoWithMetic as Y, RouteInfo as Z, ScannedNitroTasks as _, ServerFunctions as a, ServerDebugModuleMutationRecord as a0, ServerRouteInfo as a1, ServerRouteInput as a2, ServerRouteInputType as a3, ServerTaskInfo as a4, TabCategory as a5, TerminalAction as a6, TerminalBase as a7, TerminalInfo as a8, VSCodeIntegrationOptions as a9, VSCodeTunnelOptions as aa, VueInspectorClient as ab, VueInspectorData as ac, AnalyzeBuildsInfo as b, AssetEntry as c, AssetInfo as d, AssetType as e, AutoImportsWithMetadata as f, CategorizedTabs as g, ClientUpdateEvent as h, CodeServerOptions as i, CodeServerType as j, CodeSnippet as k, CompatibilityStatus as l, ComponentRelationship as m, ComponentWithRelationships as n, InstallModuleReturn as o, InstalledModuleInfo as p, MaintainerInfo as q, ModuleBuiltinTab as r, ModuleCompatibility as s, ModuleIframeTabLazyOptions as t, ModuleIframeView as u, ModuleLaunchAction as v, ModuleLaunchView as w, ModuleOptions as x, ModuleStaticInfo as y, ModuleStats as z };
|
package/dist/shared/{devtools-kit-nightly.Cbdofr7K.d.ts → devtools-kit-nightly.CaEhbN71.d.ts}
RENAMED
|
@@ -161,7 +161,6 @@ type PackageManagerName = 'npm' | 'yarn' | 'pnpm' | 'bun';
|
|
|
161
161
|
type NpmCommandType = 'install' | 'uninstall' | 'update';
|
|
162
162
|
interface NpmCommandOptions {
|
|
163
163
|
dev?: boolean;
|
|
164
|
-
global?: boolean;
|
|
165
164
|
}
|
|
166
165
|
interface AutoImportsWithMetadata {
|
|
167
166
|
imports: Import[];
|
|
@@ -454,12 +453,6 @@ interface ModuleOptions {
|
|
|
454
453
|
*/
|
|
455
454
|
telemetry?: boolean;
|
|
456
455
|
}
|
|
457
|
-
interface ModuleGlobalOptions {
|
|
458
|
-
/**
|
|
459
|
-
* List of projects to enable devtools for. Only works when devtools is installed globally.
|
|
460
|
-
*/
|
|
461
|
-
projects?: string[];
|
|
462
|
-
}
|
|
463
456
|
interface VSCodeIntegrationOptions {
|
|
464
457
|
/**
|
|
465
458
|
* Enable VS Code Server integration
|
|
@@ -613,12 +606,6 @@ interface TerminalState extends TerminalInfo {
|
|
|
613
606
|
onActionTerminate?: () => Promise<void> | void;
|
|
614
607
|
}
|
|
615
608
|
|
|
616
|
-
interface WizardFunctions {
|
|
617
|
-
enablePages: (nuxt: any) => Promise<void>;
|
|
618
|
-
}
|
|
619
|
-
type WizardActions = keyof WizardFunctions;
|
|
620
|
-
type GetWizardArgs<T extends WizardActions> = WizardFunctions[T] extends (nuxt: any, ...args: infer A) => any ? A : never;
|
|
621
|
-
|
|
622
609
|
interface ServerFunctions {
|
|
623
610
|
getServerConfig: () => NuxtOptions;
|
|
624
611
|
getServerDebugContext: () => Promise<ServerDebugContext | undefined>;
|
|
@@ -663,7 +650,7 @@ interface ServerFunctions {
|
|
|
663
650
|
renameStaticAsset: (token: string, oldPath: string, newPath: string) => Promise<void>;
|
|
664
651
|
telemetryEvent: (payload: object, immediate?: boolean) => void;
|
|
665
652
|
customTabAction: (name: string, action: number) => Promise<boolean>;
|
|
666
|
-
|
|
653
|
+
enablePages: (token: string) => Promise<void>;
|
|
667
654
|
openInEditor: (filepath: string) => Promise<boolean>;
|
|
668
655
|
restartNuxt: (token: string, hard?: boolean) => Promise<void>;
|
|
669
656
|
installNuxtModule: (token: string, name: string, dry?: boolean) => Promise<InstallModuleReturn>;
|
|
@@ -719,7 +706,6 @@ interface NuxtDevtoolsServerContext {
|
|
|
719
706
|
interface NuxtDevtoolsInfo {
|
|
720
707
|
version: string;
|
|
721
708
|
packagePath: string;
|
|
722
|
-
isGlobalInstall: boolean;
|
|
723
709
|
}
|
|
724
710
|
interface InstallModuleReturn {
|
|
725
711
|
configOriginal: string;
|
|
@@ -797,4 +783,4 @@ declare module '@nuxt/schema' {
|
|
|
797
783
|
}
|
|
798
784
|
}
|
|
799
785
|
|
|
800
|
-
export type {
|
|
786
|
+
export type { ServerDebugContext as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleTabInfo as D, ModuleType as E, ModuleVNodeView as F, GitHubContributor as G, HookInfo as H, ImageMeta as I, ModuleView as J, NpmCommandOptions as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, NpmCommandType as O, PluginMetric as P, NuxtDevToolsOptions as Q, NuxtDevtoolsServerContext as R, SubprocessOptions as S, TerminalState as T, NuxtServerData as U, PackageManagerName as V, PackageUpdateInfo as W, Payload as X, PluginInfoWithMetic as Y, RouteInfo as Z, ScannedNitroTasks as _, ServerFunctions as a, ServerDebugModuleMutationRecord as a0, ServerRouteInfo as a1, ServerRouteInput as a2, ServerRouteInputType as a3, ServerTaskInfo as a4, TabCategory as a5, TerminalAction as a6, TerminalBase as a7, TerminalInfo as a8, VSCodeIntegrationOptions as a9, VSCodeTunnelOptions as aa, VueInspectorClient as ab, VueInspectorData as ac, AnalyzeBuildsInfo as b, AssetEntry as c, AssetInfo as d, AssetType as e, AutoImportsWithMetadata as f, CategorizedTabs as g, ClientUpdateEvent as h, CodeServerOptions as i, CodeServerType as j, CodeSnippet as k, CompatibilityStatus as l, ComponentRelationship as m, ComponentWithRelationships as n, InstallModuleReturn as o, InstalledModuleInfo as p, MaintainerInfo as q, ModuleBuiltinTab as r, ModuleCompatibility as s, ModuleIframeTabLazyOptions as t, ModuleIframeView as u, ModuleLaunchAction as v, ModuleLaunchView as w, ModuleOptions as x, ModuleStaticInfo as y, ModuleStats as z };
|
package/dist/types.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { a as ServerFunctions, C as ClientFunctions, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric } from './shared/devtools-kit-nightly.
|
|
2
|
-
export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, c as AssetEntry, d as AssetInfo, e as AssetType, f as AutoImportsWithMetadata, B as BasicModuleInfo, g as CategorizedTabs, h as ClientUpdateEvent, i as CodeServerOptions, j as CodeServerType, k as CodeSnippet, l as CompatibilityStatus, m as ComponentRelationship, n as ComponentWithRelationships, G as
|
|
1
|
+
import { a as ServerFunctions, C as ClientFunctions, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric } from './shared/devtools-kit-nightly.CaEhbN71.cjs';
|
|
2
|
+
export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, c as AssetEntry, d as AssetInfo, e as AssetType, f as AutoImportsWithMetadata, B as BasicModuleInfo, g as CategorizedTabs, h as ClientUpdateEvent, i as CodeServerOptions, j as CodeServerType, k as CodeSnippet, l as CompatibilityStatus, m as ComponentRelationship, n as ComponentWithRelationships, G as GitHubContributor, I as ImageMeta, o as InstallModuleReturn, p as InstalledModuleInfo, q as MaintainerInfo, r as ModuleBuiltinTab, s as ModuleCompatibility, M as ModuleCustomTab, t as ModuleIframeTabLazyOptions, u as ModuleIframeView, v as ModuleLaunchAction, w as ModuleLaunchView, x as ModuleOptions, y as ModuleStaticInfo, z as ModuleStats, D as ModuleTabInfo, E as ModuleType, F as ModuleVNodeView, J as ModuleView, K as NpmCommandOptions, O as NpmCommandType, Q as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, R as NuxtDevtoolsServerContext, U as NuxtServerData, V as PackageManagerName, W as PackageUpdateInfo, X as Payload, Y as PluginInfoWithMetic, Z as RouteInfo, _ as ScannedNitroTasks, $ as ServerDebugContext, a0 as ServerDebugModuleMutationRecord, a1 as ServerRouteInfo, a2 as ServerRouteInput, a3 as ServerRouteInputType, a4 as ServerTaskInfo, S as SubprocessOptions, a5 as TabCategory, a6 as TerminalAction, a7 as TerminalBase, a8 as TerminalInfo, T as TerminalState, a9 as VSCodeIntegrationOptions, aa as VSCodeTunnelOptions, ab as VueInspectorClient, ac as VueInspectorData } from './shared/devtools-kit-nightly.CaEhbN71.cjs';
|
|
3
3
|
import { BirpcReturn } from 'birpc';
|
|
4
4
|
import { Hookable } from 'hookable';
|
|
5
5
|
import { NuxtApp } from 'nuxt/app';
|
package/dist/types.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { a as ServerFunctions, C as ClientFunctions, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric } from './shared/devtools-kit-nightly.
|
|
2
|
-
export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, c as AssetEntry, d as AssetInfo, e as AssetType, f as AutoImportsWithMetadata, B as BasicModuleInfo, g as CategorizedTabs, h as ClientUpdateEvent, i as CodeServerOptions, j as CodeServerType, k as CodeSnippet, l as CompatibilityStatus, m as ComponentRelationship, n as ComponentWithRelationships, G as
|
|
1
|
+
import { a as ServerFunctions, C as ClientFunctions, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric } from './shared/devtools-kit-nightly.CaEhbN71.mjs';
|
|
2
|
+
export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, c as AssetEntry, d as AssetInfo, e as AssetType, f as AutoImportsWithMetadata, B as BasicModuleInfo, g as CategorizedTabs, h as ClientUpdateEvent, i as CodeServerOptions, j as CodeServerType, k as CodeSnippet, l as CompatibilityStatus, m as ComponentRelationship, n as ComponentWithRelationships, G as GitHubContributor, I as ImageMeta, o as InstallModuleReturn, p as InstalledModuleInfo, q as MaintainerInfo, r as ModuleBuiltinTab, s as ModuleCompatibility, M as ModuleCustomTab, t as ModuleIframeTabLazyOptions, u as ModuleIframeView, v as ModuleLaunchAction, w as ModuleLaunchView, x as ModuleOptions, y as ModuleStaticInfo, z as ModuleStats, D as ModuleTabInfo, E as ModuleType, F as ModuleVNodeView, J as ModuleView, K as NpmCommandOptions, O as NpmCommandType, Q as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, R as NuxtDevtoolsServerContext, U as NuxtServerData, V as PackageManagerName, W as PackageUpdateInfo, X as Payload, Y as PluginInfoWithMetic, Z as RouteInfo, _ as ScannedNitroTasks, $ as ServerDebugContext, a0 as ServerDebugModuleMutationRecord, a1 as ServerRouteInfo, a2 as ServerRouteInput, a3 as ServerRouteInputType, a4 as ServerTaskInfo, S as SubprocessOptions, a5 as TabCategory, a6 as TerminalAction, a7 as TerminalBase, a8 as TerminalInfo, T as TerminalState, a9 as VSCodeIntegrationOptions, aa as VSCodeTunnelOptions, ab as VueInspectorClient, ac as VueInspectorData } from './shared/devtools-kit-nightly.CaEhbN71.mjs';
|
|
3
3
|
import { BirpcReturn } from 'birpc';
|
|
4
4
|
import { Hookable } from 'hookable';
|
|
5
5
|
import { NuxtApp } from 'nuxt/app';
|
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { a as ServerFunctions, C as ClientFunctions, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric } from './shared/devtools-kit-nightly.
|
|
2
|
-
export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, c as AssetEntry, d as AssetInfo, e as AssetType, f as AutoImportsWithMetadata, B as BasicModuleInfo, g as CategorizedTabs, h as ClientUpdateEvent, i as CodeServerOptions, j as CodeServerType, k as CodeSnippet, l as CompatibilityStatus, m as ComponentRelationship, n as ComponentWithRelationships, G as
|
|
1
|
+
import { a as ServerFunctions, C as ClientFunctions, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric } from './shared/devtools-kit-nightly.CaEhbN71.js';
|
|
2
|
+
export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, c as AssetEntry, d as AssetInfo, e as AssetType, f as AutoImportsWithMetadata, B as BasicModuleInfo, g as CategorizedTabs, h as ClientUpdateEvent, i as CodeServerOptions, j as CodeServerType, k as CodeSnippet, l as CompatibilityStatus, m as ComponentRelationship, n as ComponentWithRelationships, G as GitHubContributor, I as ImageMeta, o as InstallModuleReturn, p as InstalledModuleInfo, q as MaintainerInfo, r as ModuleBuiltinTab, s as ModuleCompatibility, M as ModuleCustomTab, t as ModuleIframeTabLazyOptions, u as ModuleIframeView, v as ModuleLaunchAction, w as ModuleLaunchView, x as ModuleOptions, y as ModuleStaticInfo, z as ModuleStats, D as ModuleTabInfo, E as ModuleType, F as ModuleVNodeView, J as ModuleView, K as NpmCommandOptions, O as NpmCommandType, Q as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, R as NuxtDevtoolsServerContext, U as NuxtServerData, V as PackageManagerName, W as PackageUpdateInfo, X as Payload, Y as PluginInfoWithMetic, Z as RouteInfo, _ as ScannedNitroTasks, $ as ServerDebugContext, a0 as ServerDebugModuleMutationRecord, a1 as ServerRouteInfo, a2 as ServerRouteInput, a3 as ServerRouteInputType, a4 as ServerTaskInfo, S as SubprocessOptions, a5 as TabCategory, a6 as TerminalAction, a7 as TerminalBase, a8 as TerminalInfo, T as TerminalState, a9 as VSCodeIntegrationOptions, aa as VSCodeTunnelOptions, ab as VueInspectorClient, ac as VueInspectorData } from './shared/devtools-kit-nightly.CaEhbN71.js';
|
|
3
3
|
import { BirpcReturn } from 'birpc';
|
|
4
4
|
import { Hookable } from 'hookable';
|
|
5
5
|
import { NuxtApp } from 'nuxt/app';
|
package/package.json
CHANGED