Theia API Documentation v1.65.0
    Preparing search index...

    A marker represents meta information for a given uri

    interface Marker<T> {
        data: T;
        kind?: string;
        owner: string;
        uri: string;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    data: T

    marker kind specific data

    kind?: string

    the kind, e.g. 'problem'

    owner: string

    the owner of this marker. Any string provided by the registrar.

    uri: string

    the uri this marker is associated with.