interface Message {
    detail: any;
    id: string;
    location: null | Location;
    notes: Note[];
    pluginName: string;
    text: string;
}

Properties

detail: any

Optional user-specified data that is passed through unmodified. You can use this to stash the original error, for example.

id: string
location: null | Location
notes: Note[]
pluginName: string
text: string