first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
@@ -0,0 +1,25 @@
import Domain = require('./Domain');
import SeverityLevel = require('./SeverityLevel');
/**
* Instances of Message represent printf-like trace statements that are text-searched. Log4Net, NLog and other text-based log file entries are translated into intances of this type. The message does not have measurements.
*/
declare class MessageData extends Domain {
/**
* Schema version
*/
ver: number;
/**
* Trace message
*/
message: string;
/**
* Trace severity level.
*/
severityLevel: SeverityLevel;
/**
* Collection of custom properties.
*/
properties: any;
constructor();
}
export = MessageData;