Backstage
    Preparing search index...

    Result of a backend startup attempt.

    interface BackendStartupResult {
        beginAt: Date;
        outcome: "success" | "failure";
        plugins: PluginStartupResult[];
        resultAt: Date;
    }
    Index

    Properties

    beginAt: Date

    The time the backend startup started.

    outcome: "success" | "failure"

    The outcome of the backend startup.

    Results for all plugins that were attempted to start.

    resultAt: Date

    The time the backend startup was completed.