| 12 | */ |
| 13 | declare global { |
| 14 | interface String { |
| 15 | /** |
| 16 | * Convert a path string to POSIX format (forward slashes). |
| 17 | * Extended-Length Paths in Windows (\\?\) are preserved. |
| 18 | * @returns The path with backslashes converted to forward slashes |
| 19 | */ |
| 20 | toPosix(): string |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | // This export is needed to make this file a module |
no outgoing calls
no test coverage detected