Theia API Documentation v1.75.0
    Preparing search index...
    interface ScmHistoryItem {
        author?: string;
        authorEmail?: string;
        authorIcon?: string;
        displayId?: string;
        id: string;
        message?: string;
        parentIds?: readonly string[];
        references?: readonly ScmHistoryItemRef[];
        statistics?: ScmHistoryItemStatistics;
        subject: string;
        timestamp?: number;
        tooltip?: string | MarkdownString | readonly MarkdownString[];
    }
    Index

    Properties

    author?: string
    authorEmail?: string
    authorIcon?: string
    displayId?: string
    id: string
    message?: string
    parentIds?: readonly string[]
    references?: readonly ScmHistoryItemRef[]
    subject: string
    timestamp?: number
    tooltip?: string | MarkdownString | readonly MarkdownString[]

    Hover content supplied by the provider. When present, it is rendered instead of the hover the history graph derives from the other fields, so that providers stay in control of their own links and commands. May be split into sections, which are rendered separated by horizontal rules. Note that command: links are only executed if the containing MarkdownString declares them via MarkdownString.isTrusted.