Backstage
    Preparing search index...

    Result of a plugin startup attempt.

    interface PluginStartupResult {
        failure?: { allowed: boolean; error: Error };
        modules: ModuleStartupResult[];
        pluginId: string;
        resultAt: Date;
    }
    Index

    Properties

    failure?: { allowed: boolean; error: Error }

    If the startup failed, this contains information about the failure.

    Type Declaration

    • allowed: boolean

      Whether the failure was allowed.

    • error: Error

      The error that occurred during startup, if any.

    Results for all modules belonging to this plugin.

    pluginId: string

    The ID of the plugin.

    resultAt: Date

    The time the plugin startup was completed.