export declare const path: typeof import("../deps/deno.land/std@0.165.0/path/win32.js") | typeof import("../deps/deno.land/std@0.165.0/path/posix.js"); /** * ## slash * Convert Windows backslash paths to slash paths: `foo\\bar` ➔ `foo/bar` * @fork https://github.com/sindresorhus/slash/blob/main/index.js */ export declare function slash(path: string): string; /** * 追加 / * @param pth * @returns */ export declare function appendForwardSlash(pth: string): string;