(value: unknown)
| 384 | } |
| 385 | |
| 386 | function isRuntimeKind(value: unknown): value is RuntimeRecord["kind"] { |
| 387 | return value === "agent" || value === "process" || value === "pty" || value === "git" || value === "fsWatch" || value === "composite" |
| 388 | } |
| 389 | |
| 390 | const RUNTIME_SCOPE_KEYS = new Set(["workspaceId", "rootPath", "repoPath", "correlationId", "ownerType", "ownerId", "labels"]) |
| 391 | const RUNTIME_RECORD_KEYS = new Set([ |
no outgoing calls
no test coverage detected