Interface ProblemMarker

interface ProblemMarker {
    data: Diagnostic;
    kind: "problem";
    owner: string;
    uri: string;
}

Hierarchy (view full)

  • Marker<Diagnostic>
    • ProblemMarker

Properties

Properties

data: Diagnostic
kind: "problem"

the kind, e.g. 'problem'

owner: string
uri: string

the uri this marker is associated with.