You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
294 B

3 months ago
  1. export declare class VirtualStats {
  2. constructor(config: any);
  3. private _checkModeProperty;
  4. isDirectory(): boolean;
  5. isFile(): boolean;
  6. isBlockDevice(): boolean;
  7. isCharacterDevice(): boolean;
  8. isSymbolicLink(): boolean;
  9. isFIFO(): boolean;
  10. isSocket(): boolean;
  11. }