/** * Elrest eDesign Runtime IPC Typescript Model Script * * @copyright 2024 Elrest Automations Systeme GMBH */ /// import { File } from './../Filesystem'; import * as fs from 'fs'; import { Instance } from './../Instance'; /** @codex-xmi-id 539db3cd-f6ab-5a6f-ae0d-f0b1af9f9b83 */ export declare class Script extends File { path: string; name: string; stats?: fs.Stats | undefined; content?: string | undefined; instance?: Instance | undefined; constructor(path: string, name: string, stats?: fs.Stats | undefined, content?: string | undefined, instance?: Instance | undefined); }