@duckduckgo/content-scope-scripts
    Preparing search index...

    Interface UpdateReadyState

    Update downloaded and installed. Restart to update

    interface UpdateReadyState {
        automaticUpdate: boolean;
        currentVersion: string;
        lastUpdate: number;
        latestVersion: string;
        releaseNotes?: string[];
        releaseNotesPrivacyPro?: string[];
        releaseTitle?: string;
        status: "updateReady" | "criticalUpdateReady";
    }
    Index

    Properties

    automaticUpdate: boolean
    currentVersion: string

    Current version of the app

    lastUpdate: number

    Timestamp of last check for version updates

    latestVersion: string

    Latest version of the app. May be the same as currentVersion

    releaseNotes?: string[]

    Array containing notes for the latest release

    releaseNotesPrivacyPro?: string[]

    Array containing Privacy Pro notes for the latest release

    releaseTitle?: string

    Name of the current release (e.g. April 26 2024)

    status: "updateReady" | "criticalUpdateReady"