26cb648bbf44604fe340678ccced3179a8c561ce5232df06a5647bb60468e0da1281c96fecf1c990b950c979e61f5251c0d079054db6bf625f264822ea06a0 911 B

1234567891011121314151617181920
  1. import path from 'path';
  2. declare const sep = "/";
  3. declare const delimiter = ":";
  4. declare const normalize: typeof path.normalize;
  5. declare const join: typeof path.join;
  6. declare const resolve: typeof path.resolve;
  7. declare function normalizeString(path: string, allowAboveRoot: boolean): string;
  8. declare const isAbsolute: typeof path.isAbsolute;
  9. declare const toNamespacedPath: typeof path.toNamespacedPath;
  10. declare const extname: typeof path.extname;
  11. declare const relative: typeof path.relative;
  12. declare const dirname: typeof path.dirname;
  13. declare const format: typeof path.format;
  14. declare const basename: typeof path.basename;
  15. declare const parse: typeof path.parse;
  16. declare const _default: Omit<path.PlatformPath, "win32" | "posix">;
  17. export { basename, _default as default, delimiter, dirname, extname, format, isAbsolute, join, normalize, normalizeString, parse, relative, resolve, sep, toNamespacedPath };