(fs: WebDAVFileSystem, basePath: string)
| 43 | } |
| 44 | |
| 45 | static fromSameClient(fs: WebDAVFileSystem, basePath: string) { |
| 46 | return new WebDAVFileSystem(fs.client, fs.url, basePath); |
| 47 | } |
| 48 | |
| 49 | private constructor(client: WebDAVClient, url: string, basePath: string) { |
| 50 | this.client = client; |
no outgoing calls
no test coverage detected