summaryrefslogtreecommitdiff
path: root/desktop/node_modules/cross-spawn-windows-exe/dist/src/normalize-path.d.ts
blob: 2c13c9b0f705d4f983c98bbe1b31ffaab17dc356 (plain)
1
2
3
4
5
6
7
8
9
/**
 * Converts a UNIX-style path to a Windows-style path via `wslpath`, which should come with any
 * WSL distribution.
 */
export declare function convertUNIXPathToWindows(wslPath: string): Promise<string>;
/**
 * Converts a UNIX-style path to a Windows-style path if run in a WSL environment.
 */
export declare function normalizePath(pathToNormalize: string): Promise<string>;