Backstage
    Preparing search index...

    Result of a module startup attempt.

    interface ModuleStartupResult {
        failure?: { allowed: boolean; error: Error };
        moduleId: 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.

    moduleId: string

    The ID of the module.

    resultAt: Date

    The time the module startup was completed.