Backstage
    Preparing search index...

    The callbacks passed to the register method of a backend module.

    interface BackendModuleRegistrationPoints {
        registerExtensionPoint<TExtensionPoint>(
            ref: ExtensionPoint<TExtensionPoint>,
            impl: TExtensionPoint,
        ): void;
        registerInit<
            TDeps extends
                { [key: string]: ServiceRef<unknown>
                | ExtensionPoint<unknown> },
        >(
            options: {
                deps: TDeps;
                init(deps: DepsToInstances<TDeps>): Promise<void>;
            },
        ): void;
    }
    Index

    Methods