* Join a URI path with path fragments and normalizes the resulting path. * * @param resource The input URI. * @param pathFragment The path fragment to add to the URI path. * @returns The resulting URI.
(resource: URI, ...pathFragment: string[])
| 91 | * @returns The resulting URI. |
| 92 | */ |
| 93 | joinPath(resource: URI, ...pathFragment: string[]): URI; |
| 94 | /** |
| 95 | * Normalizes the path part of a URI: Resolves `.` and `..` elements with directory names. |
| 96 | * |
no outgoing calls