Interface ProblemData

interface ProblemData {
    character?: string;
    code?: string;
    endCharacter?: string;
    endLine?: string;
    file?: string;
    kind?: ProblemLocationKind;
    line?: string;
    location?: string;
    message?: string;
    severity?: string;
}

Properties

character?: string
code?: string
endCharacter?: string
endLine?: string
file?: string
line?: string
location?: string
message?: string
severity?: string