Urara-Blog/node_modules/.pnpm-store/v3/files/4f/67a257061ca0d84d8769b5c339be09f9633bc713cd066304ad314510b3c89f6d79c1b24787b99616e4cb90e5503fdf33284a5b7a21793c7e77ffad00e3dcf0
2022-08-14 01:14:53 +08:00

20 lines
530 B
Text

/// <reference types="node" />
import type * as fs from 'fs';
export interface Entry {
dirent: Dirent;
name: string;
path: string;
stats?: Stats;
}
export declare type Stats = fs.Stats;
export declare type ErrnoException = NodeJS.ErrnoException;
export interface Dirent {
isBlockDevice: () => boolean;
isCharacterDevice: () => boolean;
isDirectory: () => boolean;
isFIFO: () => boolean;
isFile: () => boolean;
isSocket: () => boolean;
isSymbolicLink: () => boolean;
name: string;
}