Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
19
my-app/node_modules/memfs/lib/Dirent.d.ts
generated
vendored
Executable file
19
my-app/node_modules/memfs/lib/Dirent.d.ts
generated
vendored
Executable file
|
@ -0,0 +1,19 @@
|
|||
import { Link } from './node';
|
||||
import { TEncodingExtended, TDataOut } from './encoding';
|
||||
/**
|
||||
* A directory entry, like `fs.Dirent`.
|
||||
*/
|
||||
export declare class Dirent {
|
||||
static build(link: Link, encoding: TEncodingExtended | undefined): Dirent;
|
||||
name: TDataOut;
|
||||
private mode;
|
||||
private _checkModeProperty;
|
||||
isDirectory(): boolean;
|
||||
isFile(): boolean;
|
||||
isBlockDevice(): boolean;
|
||||
isCharacterDevice(): boolean;
|
||||
isSymbolicLink(): boolean;
|
||||
isFIFO(): boolean;
|
||||
isSocket(): boolean;
|
||||
}
|
||||
export default Dirent;
|
Loading…
Add table
Add a link
Reference in a new issue