An entry of a Report.

interface ReportEntry {
    context: undefined | Record<string, unknown>;
    message: string;
}

Properties

Properties

context: undefined | Record<string, unknown>

An optional key-value hash, that might have been provided with the entry.

message: string

The message in the entry.