Represents an issue (error, warning) associated with a build.

interface Issue {
    category?: string;
    data?: { [key: string]: string };
    message?: string;
    type?: IssueType;
}

Properties

category?: string

The category.

data?: { [key: string]: string }
message?: string

A description of the issue.

type?: IssueType

The type (error, warning) of the issue.