//#region src/utils/normalizePath.d.ts /** * Normalize a path for glob by replacing backslashes with forward slashes * * Utils for Windows compatibility, as Glob pattern as `**\\*.js` is not supported * * C:\\Users\\John\\Desktop\\test.txt -> C:/Users/John/Desktop/test.txt * * @param path - The path to normalize * @returns The normalized path */ declare const normalizePath: (path: string) => string; //#endregion export { normalizePath }; //# sourceMappingURL=normalizePath.d.ts.map