Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

index.d.ts 503B

1234567891011121314151617181920
  1. /// <reference types="node" />
  2. import * as fs from 'fs';
  3. export declare type 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 Dirent = {
  11. isBlockDevice(): boolean;
  12. isCharacterDevice(): boolean;
  13. isDirectory(): boolean;
  14. isFIFO(): boolean;
  15. isFile(): boolean;
  16. isSocket(): boolean;
  17. isSymbolicLink(): boolean;
  18. name: string;
  19. };
  20. //# sourceMappingURL=index.d.ts.map