fs.d.ts 202 B

123456
  1. import type { Buffer } from './buffer';
  2. import type { URL } from './url';
  3. export type PathLike = string | Buffer | URL;
  4. export declare namespace symlink {
  5. type Type = 'dir' | 'file' | 'junction';
  6. }