( config: RuntimeConfig | undefined )
| 267 | * Type guard to check if a runtime config is Devcontainer |
| 268 | */ |
| 269 | export function isDevcontainerRuntime( |
| 270 | config: RuntimeConfig | undefined |
| 271 | ): config is Extract<RuntimeConfig, { type: "devcontainer" }> { |
| 272 | return config?.type === "devcontainer"; |
| 273 | } |
| 274 | |
| 275 | /** |
| 276 | * Type guard to check if a runtime config uses worktree semantics. |
no outgoing calls
no test coverage detected