MCPcopy
hub / github.com/vuejs/devtools-v6 / BackendContext

Interface BackendContext

packages/app-backend-api/src/backend-context.ts:15–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13import type { DevtoolsBackend } from './backend'
14
15export interface BackendContext {
16 bridge: Bridge
17 hook: DevtoolsHook
18 backends: DevtoolsBackend[]
19 appRecords: AppRecord[]
20 currentTab: string
21 currentAppRecord: AppRecord
22 currentInspectedComponentId: string
23 plugins: Plugin[]
24 currentPlugin: Plugin
25 timelineLayers: TimelineLayer[]
26 nextTimelineEventId: number
27 timelineEventMap: Map<ID, TimelineEventOptions & WithId>
28 perfUniqueGroupId: number
29 customInspectors: CustomInspector[]
30 timelineMarkers: TimelineMarker[]
31}
32
33export interface TimelineLayer extends TimelineLayerOptions {
34 appRecord: AppRecord | null

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected