Interface Issue

interface Issue {
    level: IssueLevel;
    location?: Location;
    message?: string;
    source: string;
    stack?: string;
}

Properties

level: IssueLevel
location?: Location
message?: string
source: string
stack?: string