@nuxt/devtools-kit 1.0.0-beta.1 → 1.0.0-beta.3
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.c6641932.d.cts → devtools-kit.cba072d1.d.cts} +24 -2
- package/dist/shared/{devtools-kit.c6641932.d.mts → devtools-kit.cba072d1.d.mts} +24 -2
- package/dist/shared/{devtools-kit.c6641932.d.ts → devtools-kit.cba072d1.d.ts} +24 -2
- 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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as execa from 'execa';
|
|
2
2
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
3
3
|
import { BirpcGroup } from 'birpc';
|
|
4
|
-
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.
|
|
4
|
+
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.cba072d1.cjs';
|
|
5
5
|
import 'vue';
|
|
6
6
|
import 'nuxt/schema';
|
|
7
7
|
import 'nitropack';
|
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as execa from 'execa';
|
|
2
2
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
3
3
|
import { BirpcGroup } from 'birpc';
|
|
4
|
-
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.
|
|
4
|
+
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.cba072d1.mjs';
|
|
5
5
|
import 'vue';
|
|
6
6
|
import 'nuxt/schema';
|
|
7
7
|
import 'nitropack';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as execa from 'execa';
|
|
2
2
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
3
3
|
import { BirpcGroup } from 'birpc';
|
|
4
|
-
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.
|
|
4
|
+
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.cba072d1.js';
|
|
5
5
|
import 'vue';
|
|
6
6
|
import 'nuxt/schema';
|
|
7
7
|
import 'nitropack';
|
|
@@ -173,6 +173,7 @@ interface ServerRouteInfo {
|
|
|
173
173
|
}
|
|
174
174
|
type ServerRouteInputType = 'string' | 'number' | 'boolean' | 'file' | 'date' | 'time' | 'datetime-local';
|
|
175
175
|
interface ServerRouteInput {
|
|
176
|
+
active: boolean;
|
|
176
177
|
key: string;
|
|
177
178
|
value: any;
|
|
178
179
|
type?: ServerRouteInputType;
|
|
@@ -233,6 +234,7 @@ interface ModuleStaticInfo {
|
|
|
233
234
|
learn_more: string;
|
|
234
235
|
category: string;
|
|
235
236
|
type: ModuleType;
|
|
237
|
+
stats: ModuleStats;
|
|
236
238
|
maintainers: MaintainerInfo[];
|
|
237
239
|
contributors: GitHubContributor[];
|
|
238
240
|
compatibility: ModuleCompatibility;
|
|
@@ -243,6 +245,12 @@ interface ModuleCompatibility {
|
|
|
243
245
|
bridge?: boolean | 'optional';
|
|
244
246
|
};
|
|
245
247
|
}
|
|
248
|
+
interface ModuleStats {
|
|
249
|
+
downloads: number;
|
|
250
|
+
stars: number;
|
|
251
|
+
publishedAt: number;
|
|
252
|
+
createdAt: number;
|
|
253
|
+
}
|
|
246
254
|
type CompatibilityStatus = 'working' | 'wip' | 'unknown' | 'not-working';
|
|
247
255
|
type ModuleType = 'community' | 'official' | '3rd-party';
|
|
248
256
|
interface MaintainerInfo {
|
|
@@ -347,7 +355,7 @@ interface ModuleOptions {
|
|
|
347
355
|
*/
|
|
348
356
|
experimental?: {
|
|
349
357
|
/**
|
|
350
|
-
*
|
|
358
|
+
* Timeline tab
|
|
351
359
|
* @deprecated Use `timeline.enable` instead
|
|
352
360
|
*/
|
|
353
361
|
timeline?: boolean;
|
|
@@ -376,6 +384,20 @@ interface ModuleOptions {
|
|
|
376
384
|
exclude?: (string | RegExp | ((item: Import) => boolean))[];
|
|
377
385
|
};
|
|
378
386
|
};
|
|
387
|
+
/**
|
|
388
|
+
* Options for assets tab
|
|
389
|
+
*/
|
|
390
|
+
assets?: {
|
|
391
|
+
/**
|
|
392
|
+
* Allowed file extensions for assets tab to upload.
|
|
393
|
+
* To security concern.
|
|
394
|
+
*
|
|
395
|
+
* Set to '*' to disbale this limitation entirely
|
|
396
|
+
*
|
|
397
|
+
* @default Common media and txt files
|
|
398
|
+
*/
|
|
399
|
+
uploadExtensions?: '*' | string[];
|
|
400
|
+
};
|
|
379
401
|
/**
|
|
380
402
|
* Enable anonymous telemetry, helping us improve Nuxt DevTools.
|
|
381
403
|
*
|
|
@@ -686,4 +708,4 @@ declare module '@nuxt/schema' {
|
|
|
686
708
|
}
|
|
687
709
|
}
|
|
688
710
|
|
|
689
|
-
export type {
|
|
711
|
+
export type { ClientUpdateEvent as $, AutoImportsWithMetadata as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStats as D, CompatibilityStatus as E, ModuleType as F, MaintainerInfo as G, HookInfo as H, ImageMeta as I, GitHubContributor as J, AssetType as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, AssetInfo as O, PluginMetric as P, AssetEntry as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, CodeSnippet as U, VueInspectorData as V, ComponentRelationship as W, ComponentWithRelationships as X, WizardFunctions as Y, WizardActions as Z, GetWizardArgs as _, VueInspectorClient as a, NuxtDevtoolsServerContext as a0, InstallModuleReturn as a1, AnalyzeBuildMeta as a2, AnalyzeBuildsInfo as a3, ModuleOptions as a4, ModuleGlobalOptions as a5, VSCodeIntegrationOptions as a6, VSCodeTunnelOptions as a7, NuxtDevToolsOptions as a8, TabCategory as a9, ServerFunctions as b, ModuleLaunchView as c, ModuleIframeView as d, ModuleVNodeView as e, ModuleLaunchAction as f, ModuleView as g, ModuleIframeTabLazyOptions as h, ModuleBuiltinTab as i, ModuleTabInfo as j, CategorizedTabs as k, TerminalBase as l, TerminalAction as m, TerminalInfo as n, PackageUpdateInfo as o, PackageManagerName as p, NpmCommandType as q, NpmCommandOptions as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, PluginInfoWithMetic as w, InstalledModuleInfo as x, ModuleStaticInfo as y, ModuleCompatibility as z };
|
|
@@ -173,6 +173,7 @@ interface ServerRouteInfo {
|
|
|
173
173
|
}
|
|
174
174
|
type ServerRouteInputType = 'string' | 'number' | 'boolean' | 'file' | 'date' | 'time' | 'datetime-local';
|
|
175
175
|
interface ServerRouteInput {
|
|
176
|
+
active: boolean;
|
|
176
177
|
key: string;
|
|
177
178
|
value: any;
|
|
178
179
|
type?: ServerRouteInputType;
|
|
@@ -233,6 +234,7 @@ interface ModuleStaticInfo {
|
|
|
233
234
|
learn_more: string;
|
|
234
235
|
category: string;
|
|
235
236
|
type: ModuleType;
|
|
237
|
+
stats: ModuleStats;
|
|
236
238
|
maintainers: MaintainerInfo[];
|
|
237
239
|
contributors: GitHubContributor[];
|
|
238
240
|
compatibility: ModuleCompatibility;
|
|
@@ -243,6 +245,12 @@ interface ModuleCompatibility {
|
|
|
243
245
|
bridge?: boolean | 'optional';
|
|
244
246
|
};
|
|
245
247
|
}
|
|
248
|
+
interface ModuleStats {
|
|
249
|
+
downloads: number;
|
|
250
|
+
stars: number;
|
|
251
|
+
publishedAt: number;
|
|
252
|
+
createdAt: number;
|
|
253
|
+
}
|
|
246
254
|
type CompatibilityStatus = 'working' | 'wip' | 'unknown' | 'not-working';
|
|
247
255
|
type ModuleType = 'community' | 'official' | '3rd-party';
|
|
248
256
|
interface MaintainerInfo {
|
|
@@ -347,7 +355,7 @@ interface ModuleOptions {
|
|
|
347
355
|
*/
|
|
348
356
|
experimental?: {
|
|
349
357
|
/**
|
|
350
|
-
*
|
|
358
|
+
* Timeline tab
|
|
351
359
|
* @deprecated Use `timeline.enable` instead
|
|
352
360
|
*/
|
|
353
361
|
timeline?: boolean;
|
|
@@ -376,6 +384,20 @@ interface ModuleOptions {
|
|
|
376
384
|
exclude?: (string | RegExp | ((item: Import) => boolean))[];
|
|
377
385
|
};
|
|
378
386
|
};
|
|
387
|
+
/**
|
|
388
|
+
* Options for assets tab
|
|
389
|
+
*/
|
|
390
|
+
assets?: {
|
|
391
|
+
/**
|
|
392
|
+
* Allowed file extensions for assets tab to upload.
|
|
393
|
+
* To security concern.
|
|
394
|
+
*
|
|
395
|
+
* Set to '*' to disbale this limitation entirely
|
|
396
|
+
*
|
|
397
|
+
* @default Common media and txt files
|
|
398
|
+
*/
|
|
399
|
+
uploadExtensions?: '*' | string[];
|
|
400
|
+
};
|
|
379
401
|
/**
|
|
380
402
|
* Enable anonymous telemetry, helping us improve Nuxt DevTools.
|
|
381
403
|
*
|
|
@@ -686,4 +708,4 @@ declare module '@nuxt/schema' {
|
|
|
686
708
|
}
|
|
687
709
|
}
|
|
688
710
|
|
|
689
|
-
export type {
|
|
711
|
+
export type { ClientUpdateEvent as $, AutoImportsWithMetadata as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStats as D, CompatibilityStatus as E, ModuleType as F, MaintainerInfo as G, HookInfo as H, ImageMeta as I, GitHubContributor as J, AssetType as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, AssetInfo as O, PluginMetric as P, AssetEntry as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, CodeSnippet as U, VueInspectorData as V, ComponentRelationship as W, ComponentWithRelationships as X, WizardFunctions as Y, WizardActions as Z, GetWizardArgs as _, VueInspectorClient as a, NuxtDevtoolsServerContext as a0, InstallModuleReturn as a1, AnalyzeBuildMeta as a2, AnalyzeBuildsInfo as a3, ModuleOptions as a4, ModuleGlobalOptions as a5, VSCodeIntegrationOptions as a6, VSCodeTunnelOptions as a7, NuxtDevToolsOptions as a8, TabCategory as a9, ServerFunctions as b, ModuleLaunchView as c, ModuleIframeView as d, ModuleVNodeView as e, ModuleLaunchAction as f, ModuleView as g, ModuleIframeTabLazyOptions as h, ModuleBuiltinTab as i, ModuleTabInfo as j, CategorizedTabs as k, TerminalBase as l, TerminalAction as m, TerminalInfo as n, PackageUpdateInfo as o, PackageManagerName as p, NpmCommandType as q, NpmCommandOptions as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, PluginInfoWithMetic as w, InstalledModuleInfo as x, ModuleStaticInfo as y, ModuleCompatibility as z };
|
|
@@ -173,6 +173,7 @@ interface ServerRouteInfo {
|
|
|
173
173
|
}
|
|
174
174
|
type ServerRouteInputType = 'string' | 'number' | 'boolean' | 'file' | 'date' | 'time' | 'datetime-local';
|
|
175
175
|
interface ServerRouteInput {
|
|
176
|
+
active: boolean;
|
|
176
177
|
key: string;
|
|
177
178
|
value: any;
|
|
178
179
|
type?: ServerRouteInputType;
|
|
@@ -233,6 +234,7 @@ interface ModuleStaticInfo {
|
|
|
233
234
|
learn_more: string;
|
|
234
235
|
category: string;
|
|
235
236
|
type: ModuleType;
|
|
237
|
+
stats: ModuleStats;
|
|
236
238
|
maintainers: MaintainerInfo[];
|
|
237
239
|
contributors: GitHubContributor[];
|
|
238
240
|
compatibility: ModuleCompatibility;
|
|
@@ -243,6 +245,12 @@ interface ModuleCompatibility {
|
|
|
243
245
|
bridge?: boolean | 'optional';
|
|
244
246
|
};
|
|
245
247
|
}
|
|
248
|
+
interface ModuleStats {
|
|
249
|
+
downloads: number;
|
|
250
|
+
stars: number;
|
|
251
|
+
publishedAt: number;
|
|
252
|
+
createdAt: number;
|
|
253
|
+
}
|
|
246
254
|
type CompatibilityStatus = 'working' | 'wip' | 'unknown' | 'not-working';
|
|
247
255
|
type ModuleType = 'community' | 'official' | '3rd-party';
|
|
248
256
|
interface MaintainerInfo {
|
|
@@ -347,7 +355,7 @@ interface ModuleOptions {
|
|
|
347
355
|
*/
|
|
348
356
|
experimental?: {
|
|
349
357
|
/**
|
|
350
|
-
*
|
|
358
|
+
* Timeline tab
|
|
351
359
|
* @deprecated Use `timeline.enable` instead
|
|
352
360
|
*/
|
|
353
361
|
timeline?: boolean;
|
|
@@ -376,6 +384,20 @@ interface ModuleOptions {
|
|
|
376
384
|
exclude?: (string | RegExp | ((item: Import) => boolean))[];
|
|
377
385
|
};
|
|
378
386
|
};
|
|
387
|
+
/**
|
|
388
|
+
* Options for assets tab
|
|
389
|
+
*/
|
|
390
|
+
assets?: {
|
|
391
|
+
/**
|
|
392
|
+
* Allowed file extensions for assets tab to upload.
|
|
393
|
+
* To security concern.
|
|
394
|
+
*
|
|
395
|
+
* Set to '*' to disbale this limitation entirely
|
|
396
|
+
*
|
|
397
|
+
* @default Common media and txt files
|
|
398
|
+
*/
|
|
399
|
+
uploadExtensions?: '*' | string[];
|
|
400
|
+
};
|
|
379
401
|
/**
|
|
380
402
|
* Enable anonymous telemetry, helping us improve Nuxt DevTools.
|
|
381
403
|
*
|
|
@@ -686,4 +708,4 @@ declare module '@nuxt/schema' {
|
|
|
686
708
|
}
|
|
687
709
|
}
|
|
688
710
|
|
|
689
|
-
export type {
|
|
711
|
+
export type { ClientUpdateEvent as $, AutoImportsWithMetadata as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStats as D, CompatibilityStatus as E, ModuleType as F, MaintainerInfo as G, HookInfo as H, ImageMeta as I, GitHubContributor as J, AssetType as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, AssetInfo as O, PluginMetric as P, AssetEntry as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, CodeSnippet as U, VueInspectorData as V, ComponentRelationship as W, ComponentWithRelationships as X, WizardFunctions as Y, WizardActions as Z, GetWizardArgs as _, VueInspectorClient as a, NuxtDevtoolsServerContext as a0, InstallModuleReturn as a1, AnalyzeBuildMeta as a2, AnalyzeBuildsInfo as a3, ModuleOptions as a4, ModuleGlobalOptions as a5, VSCodeIntegrationOptions as a6, VSCodeTunnelOptions as a7, NuxtDevToolsOptions as a8, TabCategory as a9, ServerFunctions as b, ModuleLaunchView as c, ModuleIframeView as d, ModuleVNodeView as e, ModuleLaunchAction as f, ModuleView as g, ModuleIframeTabLazyOptions as h, ModuleBuiltinTab as i, ModuleTabInfo as j, CategorizedTabs as k, TerminalBase as l, TerminalAction as m, TerminalInfo as n, PackageUpdateInfo as o, PackageManagerName as p, NpmCommandType as q, NpmCommandOptions as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, PluginInfoWithMetic as w, InstalledModuleInfo as x, ModuleStaticInfo as y, ModuleCompatibility as z };
|
package/dist/types.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.
|
|
2
|
-
export {
|
|
1
|
+
import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.cba072d1.cjs';
|
|
2
|
+
export { a2 as AnalyzeBuildMeta, a3 as AnalyzeBuildsInfo, Q as AssetEntry, O as AssetInfo, K as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, $ as ClientUpdateEvent, U as CodeSnippet, E as CompatibilityStatus, W as ComponentRelationship, X as ComponentWithRelationships, _ as GetWizardArgs, J as GitHubContributor, I as ImageMeta, a1 as InstallModuleReturn, x as InstalledModuleInfo, G as MaintainerInfo, i as ModuleBuiltinTab, z as ModuleCompatibility, M as ModuleCustomTab, a5 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a4 as ModuleOptions, y as ModuleStaticInfo, D as ModuleStats, j as ModuleTabInfo, F as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, a8 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a0 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, w as PluginInfoWithMetic, R as RouteInfo, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, S as SubprocessOptions, a9 as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a6 as VSCodeIntegrationOptions, a7 as VSCodeTunnelOptions, Z as WizardActions, Y as WizardFunctions } from './shared/devtools-kit.cba072d1.cjs';
|
|
3
3
|
import { Ref } from 'vue';
|
|
4
4
|
import { AppConfig } from 'nuxt/schema';
|
|
5
5
|
import { NuxtApp } from 'nuxt/app';
|
package/dist/types.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.
|
|
2
|
-
export {
|
|
1
|
+
import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.cba072d1.mjs';
|
|
2
|
+
export { a2 as AnalyzeBuildMeta, a3 as AnalyzeBuildsInfo, Q as AssetEntry, O as AssetInfo, K as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, $ as ClientUpdateEvent, U as CodeSnippet, E as CompatibilityStatus, W as ComponentRelationship, X as ComponentWithRelationships, _ as GetWizardArgs, J as GitHubContributor, I as ImageMeta, a1 as InstallModuleReturn, x as InstalledModuleInfo, G as MaintainerInfo, i as ModuleBuiltinTab, z as ModuleCompatibility, M as ModuleCustomTab, a5 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a4 as ModuleOptions, y as ModuleStaticInfo, D as ModuleStats, j as ModuleTabInfo, F as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, a8 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a0 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, w as PluginInfoWithMetic, R as RouteInfo, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, S as SubprocessOptions, a9 as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a6 as VSCodeIntegrationOptions, a7 as VSCodeTunnelOptions, Z as WizardActions, Y as WizardFunctions } from './shared/devtools-kit.cba072d1.mjs';
|
|
3
3
|
import { Ref } from 'vue';
|
|
4
4
|
import { AppConfig } from 'nuxt/schema';
|
|
5
5
|
import { NuxtApp } from 'nuxt/app';
|
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.
|
|
2
|
-
export {
|
|
1
|
+
import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.cba072d1.js';
|
|
2
|
+
export { a2 as AnalyzeBuildMeta, a3 as AnalyzeBuildsInfo, Q as AssetEntry, O as AssetInfo, K as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, $ as ClientUpdateEvent, U as CodeSnippet, E as CompatibilityStatus, W as ComponentRelationship, X as ComponentWithRelationships, _ as GetWizardArgs, J as GitHubContributor, I as ImageMeta, a1 as InstallModuleReturn, x as InstalledModuleInfo, G as MaintainerInfo, i as ModuleBuiltinTab, z as ModuleCompatibility, M as ModuleCustomTab, a5 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a4 as ModuleOptions, y as ModuleStaticInfo, D as ModuleStats, j as ModuleTabInfo, F as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, a8 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a0 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, w as PluginInfoWithMetic, R as RouteInfo, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, S as SubprocessOptions, a9 as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a6 as VSCodeIntegrationOptions, a7 as VSCodeTunnelOptions, Z as WizardActions, Y as WizardFunctions } from './shared/devtools-kit.cba072d1.js';
|
|
3
3
|
import { Ref } from 'vue';
|
|
4
4
|
import { AppConfig } from 'nuxt/schema';
|
|
5
5
|
import { NuxtApp } from 'nuxt/app';
|