/** * 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'; /** @codex-xmi-id 1042cda1-9670-5219-8cc8-ce8078b6d81f */ 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); }