first commit
This commit is contained in:
19
app_vue/node_modules/memfs/lib/Dirent.d.ts
generated
vendored
Normal file
19
app_vue/node_modules/memfs/lib/Dirent.d.ts
generated
vendored
Normal 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;
|
Reference in New Issue
Block a user