* Normalize a path for comparison purposes within this runtime's context. * Handles runtime-specific path semantics (local vs remote). * * @param targetPath Path to normalize (may be relative or absolute) * @param basePath Base path to resolve relative paths against * @returns Normali
(targetPath: string, basePath: string)
| 440 | * runtime.normalizePath("~/project", "~") // => "~/project" |
| 441 | */ |
| 442 | normalizePath(targetPath: string, basePath: string): string; |
| 443 | |
| 444 | /** |
| 445 | * Compute absolute workspace path from project and workspace name. |
no outgoing calls
no test coverage detected