/** * Normalizes path separators by converting backslashes (`\`) to forward slashes (`/`). * * - Useful for ensuring cross-platform consistency between Windows and POSIX paths. * - Extended-length paths in Windows (`\\?\`) are returned unchanged because they require * backslashes to function properly. * * @param path - The file system path to normalize. * @returns The normalized path with forward slashes (except for extended-length paths). * * @example * ```ts * slash('C\\\\Users\\\\me\\\\file.txt'); * // 'C/Users/me/file.txt' * ``` */ export declare function slash(path: string): string; //# sourceMappingURL=slash.d.ts.map