HostActionSource
typetype HostActionSource = { commandId: string; kind: 'command' } | { commandId: string; kind: 'keybinding' } | { componentId: string; kind: 'ui' } | { kind: 'agent-tool'; toolName: string } | { kind: 'mod-api'; modId: ModId } | { callbackId: string; kind: 'callback' } | { kind: 'host' }
Import
import { HostActionSource } from '@modular/sdk';