Urara-Blog/node_modules/.pnpm-store/v3/files/7e/1269b5dfe1f87268c159806a0e9e00ae5b35618c5b7b42f85ce9317e39aea09387d5c6b708da8edceb8a0ba4d55af6d812d62e3a7d6143d2682412d00b5b67
2022-08-14 01:14:53 +08:00

18 lines
821 B
Text

import path from 'path';
declare const sep = "/";
declare const delimiter = ":";
declare const normalize: typeof path.normalize;
declare const join: typeof path.join;
declare const resolve: typeof path.resolve;
declare function normalizeString(path: string, allowAboveRoot: boolean): string;
declare const isAbsolute: typeof path.isAbsolute;
declare const toNamespacedPath: typeof path.toNamespacedPath;
declare const extname: typeof path.extname;
declare const relative: typeof path.relative;
declare const dirname: typeof path.dirname;
declare const format: typeof path.format;
declare const basename: typeof path.basename;
declare const parse: typeof path.parse;
export { basename, delimiter, dirname, extname, format, isAbsolute, join, normalize, normalizeString, parse, relative, resolve, sep, toNamespacedPath };