/** * Elrest eDesign Runtime IPC Typescript Model Filesystem Directory * * @copyright 2024 Elrest AutomationsSysteme GMBH */ /// import * as fs from 'fs'; import { Entry } from './Entry'; import { EntryType } from './EntryType'; export declare class Directory extends Entry { name: string; path: string; stats?: fs.Stats | undefined; children: Array; type: EntryType; constructor(name: string, path: string, stats?: fs.Stats | undefined, children?: Array); }