67a257061ca0d84d8769b5c339be09f9633bc713cd066304ad314510b3c89f6d79c1b24787b99616e4cb90e5503fdf33284a5b7a21793c7e77ffad00e3dcf0 530 B

1234567891011121314151617181920
  1. /// <reference types="node" />
  2. import type * as fs from 'fs';
  3. export interface Entry {
  4. dirent: Dirent;
  5. name: string;
  6. path: string;
  7. stats?: Stats;
  8. }
  9. export declare type Stats = fs.Stats;
  10. export declare type ErrnoException = NodeJS.ErrnoException;
  11. export interface Dirent {
  12. isBlockDevice: () => boolean;
  13. isCharacterDevice: () => boolean;
  14. isDirectory: () => boolean;
  15. isFIFO: () => boolean;
  16. isFile: () => boolean;
  17. isSocket: () => boolean;
  18. isSymbolicLink: () => boolean;
  19. name: string;
  20. }