/// import * as fs from 'fs'; import { PrepareOptionsFromClass } from './types'; export default class Dirent implements fs.Dirent { private readonly _options; readonly name: string; constructor(_options?: PrepareOptionsFromClass); isFile(): boolean; isDirectory(): boolean; isBlockDevice(): boolean; isCharacterDevice(): boolean; isSymbolicLink(): boolean; isFIFO(): boolean; isSocket(): boolean; } //# sourceMappingURL=dirent.d.ts.map