@vobs/devtools 1.0.0 → 1.2.0
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.cjs +1846 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +399 -0
- package/dist/index.d.ts +399 -0
- package/dist/index.js +1837 -0
- package/dist/index.js.map +1 -0
- package/package.json +23 -8
- package/src/index.ts +8 -6
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,399 @@
|
|
|
1
|
+
import { RuntimeHydrationMismatch } from '@vobs/runtime';
|
|
2
|
+
import { VobsPlugin } from '@vobs/vobs';
|
|
3
|
+
import { HTTPDebugRequest } from '@vobs/http';
|
|
4
|
+
|
|
5
|
+
type DependencyEdgeType = 'state-to-effect' | 'state-to-memo' | 'memo-to-effect' | 'memo-to-memo';
|
|
6
|
+
interface ComponentDebugNode {
|
|
7
|
+
readonly id: string;
|
|
8
|
+
readonly name: string;
|
|
9
|
+
readonly ownerId: string;
|
|
10
|
+
readonly signals: readonly string[];
|
|
11
|
+
readonly effects: readonly string[];
|
|
12
|
+
readonly recentUpdates: readonly string[];
|
|
13
|
+
readonly domUpdates: number;
|
|
14
|
+
readonly children: readonly ComponentDebugNode[];
|
|
15
|
+
readonly mounted: boolean;
|
|
16
|
+
}
|
|
17
|
+
interface SignalDebugInfo {
|
|
18
|
+
readonly id: string;
|
|
19
|
+
readonly name: string;
|
|
20
|
+
readonly value: unknown;
|
|
21
|
+
readonly component: string;
|
|
22
|
+
readonly subscribers: number;
|
|
23
|
+
readonly createdAt: number;
|
|
24
|
+
readonly kind?: 'state' | 'memo';
|
|
25
|
+
}
|
|
26
|
+
interface DebugErrorInfo {
|
|
27
|
+
readonly name: string;
|
|
28
|
+
readonly message: string;
|
|
29
|
+
readonly stack?: string;
|
|
30
|
+
readonly phase?: string;
|
|
31
|
+
readonly source?: string;
|
|
32
|
+
readonly code?: string;
|
|
33
|
+
readonly hint?: string;
|
|
34
|
+
readonly cause?: string;
|
|
35
|
+
readonly fix?: string;
|
|
36
|
+
readonly location?: {
|
|
37
|
+
readonly file: string;
|
|
38
|
+
readonly line: number;
|
|
39
|
+
readonly column: number;
|
|
40
|
+
};
|
|
41
|
+
readonly hydration?: RuntimeHydrationMismatch;
|
|
42
|
+
}
|
|
43
|
+
interface EffectDebugInfo {
|
|
44
|
+
readonly id: string;
|
|
45
|
+
readonly name: string;
|
|
46
|
+
readonly component: string;
|
|
47
|
+
readonly dependencies: readonly string[];
|
|
48
|
+
readonly status: 'idle' | 'dirty' | 'running' | 'success' | 'error';
|
|
49
|
+
readonly executionCount: number;
|
|
50
|
+
readonly lastExecutionTime: number;
|
|
51
|
+
readonly lastRunStatus?: 'success' | 'error' | 'cancelled';
|
|
52
|
+
readonly lastDuration?: number;
|
|
53
|
+
readonly lastUpdateId?: string;
|
|
54
|
+
readonly lastError?: DebugErrorInfo;
|
|
55
|
+
readonly lastDomUpdates?: number;
|
|
56
|
+
}
|
|
57
|
+
interface DependencyEdge {
|
|
58
|
+
readonly from: string;
|
|
59
|
+
readonly to: string;
|
|
60
|
+
readonly type: DependencyEdgeType;
|
|
61
|
+
}
|
|
62
|
+
interface EffectExecutionInfo {
|
|
63
|
+
readonly effectId: string;
|
|
64
|
+
readonly component: string;
|
|
65
|
+
readonly duration: number;
|
|
66
|
+
readonly domUpdates: number;
|
|
67
|
+
readonly status?: 'success' | 'error' | 'cancelled';
|
|
68
|
+
readonly error?: DebugErrorInfo;
|
|
69
|
+
}
|
|
70
|
+
interface DomUpdateInfo {
|
|
71
|
+
readonly operation: 'text' | 'property' | 'attribute' | 'insert' | 'remove';
|
|
72
|
+
readonly target: string;
|
|
73
|
+
readonly parent?: string;
|
|
74
|
+
readonly key?: string;
|
|
75
|
+
readonly previousValue?: unknown;
|
|
76
|
+
readonly nextValue?: unknown;
|
|
77
|
+
readonly effectId?: string;
|
|
78
|
+
readonly route?: string;
|
|
79
|
+
readonly navigationId?: number;
|
|
80
|
+
readonly requestId?: number;
|
|
81
|
+
}
|
|
82
|
+
interface UpdateTrace {
|
|
83
|
+
readonly id: string;
|
|
84
|
+
readonly signalId: string;
|
|
85
|
+
readonly signalName: string;
|
|
86
|
+
readonly previousValue: unknown;
|
|
87
|
+
readonly nextValue: unknown;
|
|
88
|
+
readonly timestamp: number;
|
|
89
|
+
readonly effects: readonly EffectExecutionInfo[];
|
|
90
|
+
readonly affectedSignals: readonly string[];
|
|
91
|
+
readonly affectedEffects: readonly string[];
|
|
92
|
+
readonly domUpdates: readonly DomUpdateInfo[];
|
|
93
|
+
readonly status: 'completed' | 'error' | 'cancelled';
|
|
94
|
+
readonly error?: DebugErrorInfo;
|
|
95
|
+
readonly duration: number;
|
|
96
|
+
readonly route?: string;
|
|
97
|
+
readonly navigationId?: number;
|
|
98
|
+
readonly requestIds?: readonly number[];
|
|
99
|
+
}
|
|
100
|
+
type LifecycleEventType = 'owner-created' | 'owner-named' | 'owner-disposed' | 'signal-created' | 'signal-named' | 'signal-changed' | 'signal-disposed' | 'memo-created' | 'memo-invalidated' | 'effect-created' | 'effect-invalidated' | 'effect-run-start' | 'effect-run' | 'effect-disposed';
|
|
101
|
+
interface LifecycleEvent {
|
|
102
|
+
readonly id: string;
|
|
103
|
+
readonly type: LifecycleEventType;
|
|
104
|
+
readonly timestamp: number;
|
|
105
|
+
readonly targetId: string;
|
|
106
|
+
readonly name?: string;
|
|
107
|
+
readonly ownerId?: string;
|
|
108
|
+
readonly status?: 'success' | 'error' | 'cancelled';
|
|
109
|
+
}
|
|
110
|
+
interface NetworkRequestTrace {
|
|
111
|
+
readonly id: number;
|
|
112
|
+
readonly url: string;
|
|
113
|
+
readonly method: string;
|
|
114
|
+
readonly status: 'loading' | 'retrying' | 'success' | 'error' | 'cancelled';
|
|
115
|
+
readonly headers: Readonly<Record<string, string>>;
|
|
116
|
+
readonly requestBody?: unknown;
|
|
117
|
+
readonly startedAt: number;
|
|
118
|
+
readonly endedAt?: number;
|
|
119
|
+
readonly duration?: number;
|
|
120
|
+
readonly attempt: number;
|
|
121
|
+
readonly retries: number;
|
|
122
|
+
readonly responseStatus?: number;
|
|
123
|
+
readonly responseBody?: unknown;
|
|
124
|
+
readonly error?: {
|
|
125
|
+
readonly name: string;
|
|
126
|
+
readonly message: string;
|
|
127
|
+
};
|
|
128
|
+
readonly source?: 'http' | 'router' | 'ssr';
|
|
129
|
+
readonly test?: boolean;
|
|
130
|
+
readonly route?: string;
|
|
131
|
+
readonly navigationId?: number;
|
|
132
|
+
readonly dataRequestId?: number;
|
|
133
|
+
readonly environment?: 'client' | 'server';
|
|
134
|
+
}
|
|
135
|
+
type DevToolsErrorPhase = 'effect' | 'network' | 'global' | 'unhandledrejection' | 'route' | 'hydration' | 'render' | 'boundary' | 'application' | 'event';
|
|
136
|
+
type DevToolsErrorOrigin = 'framework' | 'usage' | 'application' | 'unknown';
|
|
137
|
+
type DevToolsErrorRecovery = 'propagated' | 'handled' | 'fallback' | 'retrying' | 'recovered';
|
|
138
|
+
interface DevToolsErrorContext {
|
|
139
|
+
readonly updateId?: string;
|
|
140
|
+
readonly effectId?: string;
|
|
141
|
+
readonly requestId?: number;
|
|
142
|
+
readonly navigationId?: number;
|
|
143
|
+
readonly route?: string;
|
|
144
|
+
readonly source?: string;
|
|
145
|
+
readonly ownerId?: string;
|
|
146
|
+
readonly component?: string;
|
|
147
|
+
readonly origin?: DevToolsErrorOrigin;
|
|
148
|
+
readonly code?: string;
|
|
149
|
+
readonly hint?: string;
|
|
150
|
+
readonly handled?: boolean;
|
|
151
|
+
readonly recovery?: DevToolsErrorRecovery;
|
|
152
|
+
}
|
|
153
|
+
interface DevToolsErrorTrace extends DebugErrorInfo {
|
|
154
|
+
readonly id: number;
|
|
155
|
+
readonly phase: DevToolsErrorPhase;
|
|
156
|
+
readonly firstOccurredAt: number;
|
|
157
|
+
readonly lastOccurredAt: number;
|
|
158
|
+
readonly count: number;
|
|
159
|
+
readonly phases: readonly DevToolsErrorPhase[];
|
|
160
|
+
readonly origin: DevToolsErrorOrigin;
|
|
161
|
+
readonly handled: boolean;
|
|
162
|
+
readonly recovery: DevToolsErrorRecovery;
|
|
163
|
+
readonly updateId?: string;
|
|
164
|
+
readonly effectId?: string;
|
|
165
|
+
readonly requestId?: number;
|
|
166
|
+
readonly navigationId?: number;
|
|
167
|
+
readonly route?: string;
|
|
168
|
+
readonly ownerId?: string;
|
|
169
|
+
readonly component?: string;
|
|
170
|
+
}
|
|
171
|
+
interface DevToolsCollectionState {
|
|
172
|
+
readonly paused: boolean;
|
|
173
|
+
}
|
|
174
|
+
interface DevToolsPrivacyOptions {
|
|
175
|
+
/** Additional case-insensitive header names or fragments to omit. */
|
|
176
|
+
readonly redactedHeaders?: readonly string[];
|
|
177
|
+
/** Object keys whose values are replaced in captured/exported values. */
|
|
178
|
+
readonly redactedFields?: readonly string[];
|
|
179
|
+
/** Replace DOM values in diagnostics with the configured replacement. */
|
|
180
|
+
readonly redactDomValues?: boolean;
|
|
181
|
+
readonly replacement?: string;
|
|
182
|
+
}
|
|
183
|
+
interface DevToolsPerformanceEntry {
|
|
184
|
+
readonly kind: 'update' | 'effect' | 'request';
|
|
185
|
+
readonly id: string | number;
|
|
186
|
+
readonly label: string;
|
|
187
|
+
readonly duration: number;
|
|
188
|
+
readonly timestamp: number;
|
|
189
|
+
readonly status: string;
|
|
190
|
+
}
|
|
191
|
+
interface DevToolsInspector {
|
|
192
|
+
readonly label?: string;
|
|
193
|
+
inspect(value: unknown): unknown;
|
|
194
|
+
}
|
|
195
|
+
interface DevToolsTimeline {
|
|
196
|
+
readonly label?: string;
|
|
197
|
+
readonly getEvents?: () => readonly DevToolsTimelineEvent[];
|
|
198
|
+
}
|
|
199
|
+
interface DevToolsTimelineEvent {
|
|
200
|
+
readonly id: string;
|
|
201
|
+
readonly timestamp: number;
|
|
202
|
+
readonly title: string;
|
|
203
|
+
readonly data?: unknown;
|
|
204
|
+
}
|
|
205
|
+
interface DevToolsMetric {
|
|
206
|
+
readonly label?: string;
|
|
207
|
+
read(): number | string;
|
|
208
|
+
}
|
|
209
|
+
interface DevToolsExtensionSnapshot {
|
|
210
|
+
readonly inspectors: readonly string[];
|
|
211
|
+
readonly timelines: readonly string[];
|
|
212
|
+
readonly timelineEvents: Readonly<Record<string, readonly DevToolsTimelineEvent[]>>;
|
|
213
|
+
readonly metrics: Readonly<Record<string, number | string>>;
|
|
214
|
+
}
|
|
215
|
+
interface DevToolsDiagnosticSnapshot {
|
|
216
|
+
readonly version: 1;
|
|
217
|
+
readonly exportedAt: number;
|
|
218
|
+
readonly updates: readonly UpdateTrace[];
|
|
219
|
+
readonly lifecycle: readonly LifecycleEvent[];
|
|
220
|
+
readonly network: readonly NetworkRequestTrace[];
|
|
221
|
+
readonly errors: readonly DevToolsErrorTrace[];
|
|
222
|
+
readonly performance: PerformanceMetrics;
|
|
223
|
+
readonly memory: MemorySnapshot;
|
|
224
|
+
readonly extensions: DevToolsExtensionSnapshot;
|
|
225
|
+
}
|
|
226
|
+
interface DevToolsSSRRequestSnapshot {
|
|
227
|
+
readonly version: 1;
|
|
228
|
+
readonly environment: 'server';
|
|
229
|
+
readonly requests: readonly HTTPDebugRequest[];
|
|
230
|
+
}
|
|
231
|
+
type DevToolsSelection = {
|
|
232
|
+
readonly type: 'component';
|
|
233
|
+
readonly id: string;
|
|
234
|
+
} | {
|
|
235
|
+
readonly type: 'signal';
|
|
236
|
+
readonly id: string;
|
|
237
|
+
} | {
|
|
238
|
+
readonly type: 'effect';
|
|
239
|
+
readonly id: string;
|
|
240
|
+
} | {
|
|
241
|
+
readonly type: 'update';
|
|
242
|
+
readonly id: string;
|
|
243
|
+
} | {
|
|
244
|
+
readonly type: 'request';
|
|
245
|
+
readonly id: number;
|
|
246
|
+
} | {
|
|
247
|
+
readonly type: 'error';
|
|
248
|
+
readonly id: number;
|
|
249
|
+
};
|
|
250
|
+
declare const DEVTOOLS_REACTIVITY_EVENTS: readonly ["owner-created", "owner-named", "owner-disposed", "signal-created", "signal-named", "signal-update", "signal-disposed", "effect-created", "effect-invalidated", "effect-run-start", "effect-run", "effect-disposed", "memo-created", "memo-update", "update"];
|
|
251
|
+
declare const DEVTOOLS_EVENTS: readonly ["owner-created", "owner-named", "owner-disposed", "signal-created", "signal-named", "signal-update", "signal-disposed", "effect-created", "effect-invalidated", "effect-run-start", "effect-run", "effect-disposed", "memo-created", "memo-update", "update", "lifecycle", "dom-update", "network-request", "router", "error", "collection", "collection-cleared", "extension"];
|
|
252
|
+
interface PerformanceMetrics {
|
|
253
|
+
readonly updateCount: number;
|
|
254
|
+
readonly averageUpdateDuration: number;
|
|
255
|
+
readonly slowUpdateCount: number;
|
|
256
|
+
readonly effectExecutionCount: number;
|
|
257
|
+
readonly slowEffectCount: number;
|
|
258
|
+
readonly slowRequestCount: number;
|
|
259
|
+
readonly maxUpdateDuration: number;
|
|
260
|
+
readonly maxEffectDuration: number;
|
|
261
|
+
readonly maxRequestDuration: number;
|
|
262
|
+
}
|
|
263
|
+
interface MemorySnapshot {
|
|
264
|
+
readonly signalCount: number;
|
|
265
|
+
readonly effectCount: number;
|
|
266
|
+
readonly ownerCount: number;
|
|
267
|
+
readonly dependencyEdgeCount: number;
|
|
268
|
+
readonly leakedOwners: number;
|
|
269
|
+
}
|
|
270
|
+
interface DevToolsTarget {
|
|
271
|
+
__VOBS_DEVTOOLS__?: DevToolsAPI;
|
|
272
|
+
addEventListener?: (type: string, listener: (...args: any[]) => void) => void;
|
|
273
|
+
removeEventListener?: (type: string, listener: (...args: any[]) => void) => void;
|
|
274
|
+
}
|
|
275
|
+
interface DevToolsOptions {
|
|
276
|
+
readonly expose?: boolean;
|
|
277
|
+
readonly target?: DevToolsTarget;
|
|
278
|
+
readonly maxUpdates?: number;
|
|
279
|
+
readonly slowUpdateThreshold?: number;
|
|
280
|
+
readonly privacy?: DevToolsPrivacyOptions;
|
|
281
|
+
/** Explicit opt-in for state-changing debug actions. Disabled by default. */
|
|
282
|
+
readonly allowMutations?: boolean;
|
|
283
|
+
/** Optional Router-like source for associating navigation/data events. */
|
|
284
|
+
readonly router?: DevToolsRouterSource;
|
|
285
|
+
}
|
|
286
|
+
interface DevToolsRouterSource {
|
|
287
|
+
readonly devtools: {
|
|
288
|
+
subscribe(event: string, callback: (payload: unknown) => void): () => void;
|
|
289
|
+
};
|
|
290
|
+
}
|
|
291
|
+
interface DevToolsAPI {
|
|
292
|
+
getComponentTree(): readonly ComponentDebugNode[];
|
|
293
|
+
getComponent(ownerId: string): ComponentDebugNode | null;
|
|
294
|
+
getSignals(): readonly SignalDebugInfo[];
|
|
295
|
+
getSignal(signalId: string): SignalDebugInfo | null;
|
|
296
|
+
canMutate(): boolean;
|
|
297
|
+
setSignalValue(signalId: string, value: unknown): boolean;
|
|
298
|
+
getDependencies(signalId: string): readonly DependencyEdge[];
|
|
299
|
+
getDependents(subscriberId: string): readonly DependencyEdge[];
|
|
300
|
+
getEffects(): readonly EffectDebugInfo[];
|
|
301
|
+
getUpdates(): readonly UpdateTrace[];
|
|
302
|
+
getLifecycleEvents(): readonly LifecycleEvent[];
|
|
303
|
+
getNetworkRequests(): readonly NetworkRequestTrace[];
|
|
304
|
+
importSSRRequests(snapshot: unknown): void;
|
|
305
|
+
getRouterContext(): DevToolsRouterContext | null;
|
|
306
|
+
attachRouter(router: DevToolsRouterSource): () => void;
|
|
307
|
+
getErrors(): readonly DevToolsErrorTrace[];
|
|
308
|
+
getPerformanceEntries(): readonly DevToolsPerformanceEntry[];
|
|
309
|
+
getCollectionState(): DevToolsCollectionState;
|
|
310
|
+
setCollectionPaused(paused: boolean): void;
|
|
311
|
+
clearUpdates(): void;
|
|
312
|
+
clearNetworkRequests(): void;
|
|
313
|
+
clearErrors(): void;
|
|
314
|
+
clearLifecycleEvents(): void;
|
|
315
|
+
reportError(phase: DevToolsErrorPhase, error: unknown, context?: DevToolsErrorContext): void;
|
|
316
|
+
getPerformanceMetrics(): PerformanceMetrics;
|
|
317
|
+
takeMemorySnapshot(): MemorySnapshot;
|
|
318
|
+
exportDiagnostics(): DevToolsDiagnosticSnapshot;
|
|
319
|
+
importDiagnostics(snapshot: unknown): void;
|
|
320
|
+
registerInspector(id: string, inspector: DevToolsInspector): () => void;
|
|
321
|
+
registerTimeline(id: string, timeline?: DevToolsTimeline): () => void;
|
|
322
|
+
registerMetric(id: string, metric: DevToolsMetric): () => void;
|
|
323
|
+
getExtensionSnapshot(): DevToolsExtensionSnapshot;
|
|
324
|
+
inspectExtension(id: string, value: unknown): unknown;
|
|
325
|
+
onUpdate(callback: (trace: UpdateTrace) => void): () => void;
|
|
326
|
+
subscribe(event: string, callback: (...args: any[]) => void): () => void;
|
|
327
|
+
dispose(): void;
|
|
328
|
+
}
|
|
329
|
+
interface DevToolsRouterContext {
|
|
330
|
+
readonly route?: string;
|
|
331
|
+
readonly navigationId?: number;
|
|
332
|
+
readonly navigationStatus?: string;
|
|
333
|
+
readonly dataRequests: readonly {
|
|
334
|
+
readonly id: number;
|
|
335
|
+
readonly kind: string;
|
|
336
|
+
readonly key: string;
|
|
337
|
+
readonly route?: string;
|
|
338
|
+
readonly status: string;
|
|
339
|
+
readonly startedAt?: number;
|
|
340
|
+
readonly endedAt?: number;
|
|
341
|
+
readonly duration?: number;
|
|
342
|
+
readonly navigationId?: number;
|
|
343
|
+
readonly trigger?: string;
|
|
344
|
+
readonly result?: unknown;
|
|
345
|
+
readonly error?: string;
|
|
346
|
+
readonly environment?: 'client' | 'server';
|
|
347
|
+
}[];
|
|
348
|
+
}
|
|
349
|
+
interface DevToolsWireRequest {
|
|
350
|
+
readonly source: 'vobs-devtools';
|
|
351
|
+
readonly type: 'request';
|
|
352
|
+
readonly id: string;
|
|
353
|
+
readonly method: string;
|
|
354
|
+
readonly args?: readonly unknown[];
|
|
355
|
+
}
|
|
356
|
+
interface DevToolsWireResponse {
|
|
357
|
+
readonly source: 'vobs-devtools';
|
|
358
|
+
readonly type: 'response';
|
|
359
|
+
readonly id: string;
|
|
360
|
+
readonly ok: boolean;
|
|
361
|
+
readonly result?: unknown;
|
|
362
|
+
readonly error?: string;
|
|
363
|
+
}
|
|
364
|
+
interface DevToolsWireEvent {
|
|
365
|
+
readonly source: 'vobs-devtools';
|
|
366
|
+
readonly type: 'event';
|
|
367
|
+
readonly event: string;
|
|
368
|
+
readonly payload: unknown;
|
|
369
|
+
}
|
|
370
|
+
interface DevToolsMessageTarget {
|
|
371
|
+
addEventListener(type: string, listener: (event: DevToolsMessageEvent) => void): void;
|
|
372
|
+
removeEventListener(type: string, listener: (event: DevToolsMessageEvent) => void): void;
|
|
373
|
+
postMessage(message: unknown, targetOrigin: string): void;
|
|
374
|
+
}
|
|
375
|
+
interface DevToolsMessageEvent {
|
|
376
|
+
readonly data?: unknown;
|
|
377
|
+
readonly source?: unknown;
|
|
378
|
+
}
|
|
379
|
+
interface DevToolsBridgeOptions {
|
|
380
|
+
readonly target?: DevToolsMessageTarget;
|
|
381
|
+
readonly api?: DevToolsAPI | null;
|
|
382
|
+
}
|
|
383
|
+
interface DevToolsPluginOptions extends DevToolsOptions {
|
|
384
|
+
readonly enabled?: boolean;
|
|
385
|
+
}
|
|
386
|
+
declare function createDevTools(options?: DevToolsOptions): DevToolsAPI;
|
|
387
|
+
declare function enableDevTools(options?: DevToolsOptions): DevToolsAPI;
|
|
388
|
+
declare function disableDevTools(): void;
|
|
389
|
+
declare function getDevTools(): DevToolsAPI | null;
|
|
390
|
+
/** Connects a browser panel through a small postMessage protocol. */
|
|
391
|
+
declare function connectDevTools(options?: DevToolsBridgeOptions): () => void;
|
|
392
|
+
declare function devtoolsPlugin(options?: DevToolsPluginOptions): VobsPlugin;
|
|
393
|
+
declare global {
|
|
394
|
+
interface Window {
|
|
395
|
+
__VOBS_DEVTOOLS__?: DevToolsAPI;
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
export { type ComponentDebugNode, DEVTOOLS_EVENTS, DEVTOOLS_REACTIVITY_EVENTS, type DebugErrorInfo, type DependencyEdge, type DependencyEdgeType, type DevToolsAPI, type DevToolsBridgeOptions, type DevToolsCollectionState, type DevToolsDiagnosticSnapshot, type DevToolsErrorContext, type DevToolsErrorOrigin, type DevToolsErrorPhase, type DevToolsErrorRecovery, type DevToolsErrorTrace, type DevToolsExtensionSnapshot, type DevToolsInspector, type DevToolsMessageEvent, type DevToolsMessageTarget, type DevToolsMetric, type DevToolsOptions, type DevToolsPerformanceEntry, type DevToolsPluginOptions, type DevToolsPrivacyOptions, type DevToolsRouterContext, type DevToolsRouterSource, type DevToolsSSRRequestSnapshot, type DevToolsSelection, type DevToolsTarget, type DevToolsTimeline, type DevToolsTimelineEvent, type DevToolsWireEvent, type DevToolsWireRequest, type DevToolsWireResponse, type DomUpdateInfo, type EffectDebugInfo, type EffectExecutionInfo, type LifecycleEvent, type LifecycleEventType, type MemorySnapshot, type NetworkRequestTrace, type PerformanceMetrics, type SignalDebugInfo, type UpdateTrace, connectDevTools, createDevTools, devtoolsPlugin, disableDevTools, enableDevTools, getDevTools };
|