HEX
Server: Apache
System: Linux iad1-shared-e1-13 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
User: dh_x7ke6i (5503775)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: //usr/share/nodejs/@nodelib/fs.scandir/src/types/index.ts
import * as fs from 'fs';

export type Entry = {
	dirent: Dirent;
	name: string;
	path: string;
	stats?: Stats;
};

export type Stats = fs.Stats;

export type Dirent = {
	isBlockDevice(): boolean;
	isCharacterDevice(): boolean;
	isDirectory(): boolean;
	isFIFO(): boolean;
	isFile(): boolean;
	isSocket(): boolean;
	isSymbolicLink(): boolean;
	name: string;
};