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