/** * Elrest eDesign Runtime IPC Typescript Model Filesystem File * * @copyright 2024 Elrest AutomationsSysteme GMBH */ /// import * as fs from 'fs'; import { Entry } from './Entry'; import { EntryType } from './EntryType'; /** @codex-xmi-id 49436b7f-3dd6-5507-b3f0-0847c231e6db */ export declare class File extends Entry { name: string; path: string; stats?: fs.Stats | undefined; content?: string | undefined; mime?: string | undefined; type: EntryType; constructor(name: string, path: string, stats?: fs.Stats | undefined, content?: string | undefined, mime?: string | undefined); }