type HostScope = { kind: 'root' } | { kind: 'workspace'; workspaceId: string } | { editorId: string; kind: 'editor'; workspaceId?: string } | { kind: 'session'; sessionId: string; workspaceId?: string } | { kind: 'agent-panel'; panelId: string; sessionId?: string; workspaceId?: string } | { kind: 'view'; modId: ModId; viewId: string; workspaceId?: string }
Import
import { HostScope } from '@modular/sdk/view';