index.d.ts 193 B

123456
  1. declare function realpath(filepath: string): string;
  2. declare namespace realpath {
  3. var sync: typeof realpathSync;
  4. }
  5. declare function realpathSync(filepath: string): string;
  6. export = realpath;