interface UsabilityIssue {
    message: string;
    params?: object;
    severity: string;
}

Properties

message: string

The pre-localized message to display in relation to the usability issue.

params?: object

Parameters to supply to the localization.

severity: string

The severity of the issue, either "error", "warning", or "info".