AboutSupportDeveloper GuideVersion 41.129.83.3
ExtensionsInitializationFailedEvent: Omit<ExtensionsEvent, "extensions"> & {
    error: Error;
    type: "extensions-initialization-failed";
}

An event that fires when extension initialization fails on initial app launch. Users may attempt to re-initialize extensions by calling System.refreshExtensions. This event will not fire in response to manual extension refreshes (users should catch the error normally).

Type declaration

  • error: Error

    The error that caused the extension initialization failure

  • type: "extensions-initialization-failed"