/** * 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'; 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); }