/** * Elrest eDesign Runtime IPC Typescript Model Runtime * * @copyright 2024 Elrest Automations Systeme GMBH */ import { NetworkInterface } from './NetworkInterface'; import { CPU } from './CPU'; export declare class Header { reportVersion: number; event: string; trigger: string; filename: string; dumpEventTime: string; dumpEventTimeStamp: string; processId: number; threadId: number; cwd: string; commandLine: Array; nodejsVersion: string; glibcVersionRuntime: string; glibcVersionCompiler: string; wordSize: string; arch: string; platform: string; componentVersions: { [key: string]: string; }; release: { name: string; }; osName: string; osRelease: string; osVersion: string; osMachine: string; cpus: Array; networkInterfaces: Array; host: string; constructor(reportVersion: number, event: string, trigger: string, filename: string, dumpEventTime: string, dumpEventTimeStamp: string, processId: number, threadId: number, cwd: string, commandLine: Array, nodejsVersion: string, glibcVersionRuntime: string, glibcVersionCompiler: string, wordSize: string, arch: string, platform: string, componentVersions: { [key: string]: string; }, release: { name: string; }, osName: string, osRelease: string, osVersion: string, osMachine: string, cpus: Array, networkInterfaces: Array, host: string); }