source: trip-planner-front/node_modules/memfs/lib/Dirent.d.ts@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 535 bytes
Line 
1import { Link } from './node';
2import { TEncodingExtended, TDataOut } from './encoding';
3/**
4 * A directory entry, like `fs.Dirent`.
5 */
6export declare class Dirent {
7 static build(link: Link, encoding: TEncodingExtended | undefined): Dirent;
8 name: TDataOut;
9 private mode;
10 private _checkModeProperty;
11 isDirectory(): boolean;
12 isFile(): boolean;
13 isBlockDevice(): boolean;
14 isCharacterDevice(): boolean;
15 isSymbolicLink(): boolean;
16 isFIFO(): boolean;
17 isSocket(): boolean;
18}
19export default Dirent;
Note: See TracBrowser for help on using the repository browser.