Backstage
    Preparing search index...

    Interface FrontendPlugin<TRoutes, TExternalRoutes>

    interface FrontendPlugin<
        TRoutes extends
            { [name in string]: RouteRef
            | SubRouteRef } = { [name in string]: RouteRef | SubRouteRef },
        TExternalRoutes extends
            { [name in string]: ExternalRouteRef } = {
            [name in string]: ExternalRouteRef
        },
    > {
        $$type: "@backstage/FrontendPlugin";
        externalRoutes: TExternalRoutes;
        id: string;
        routes: TRoutes;
        info(): Promise<FrontendPluginInfo>;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    $$type: "@backstage/FrontendPlugin"
    externalRoutes: TExternalRoutes
    id: string
    routes: TRoutes

    Methods