@dxos/app-framework - v0.9.0
    Preparing search index...

    Type Alias PluginFailure

    Record of a plugin that failed to load or activate. Surfaced via the PluginManager.failed atom so registry / UI consumers can flag unhealthy plugins (e.g. a remote host that has gone offline) rather than leaving the app in a half-broken state.

    type PluginFailure = {
        error: Error;
        id: string;
        phase: PluginFailurePhase;
        reason: PluginFailureReason;
        timestamp: number;
    }
    Index

    Properties

    error: Error
    id: string
    timestamp: number

    Date.now() when the failure was recorded.