Files
discord-clone/node_modules/pathe/dist/index.d.ts
2023-01-03 09:29:04 -06:00

19 lines
826 B
TypeScript

import path from 'node: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 };