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