Interface IEventLog

interface IEventLog {
    info?: JSONObject;
    level: EventLogLevel;
    message: string;
    timestamp?: Date;
    type?: string;
}

Implemented by

Properties

info?: JSONObject
message: string
timestamp?: Date
type?: string