Backstage
    Preparing search index...

    Interface CreateFrontendFeatureLoaderOptions

    interface CreateFrontendFeatureLoaderOptions {
        loader(
            deps: { config: Config },
        ):
            | Iterable<
                | FrontendFeatureLoader
                | FrontendFeature
                | Promise<{ default: FrontendFeatureLoader | FrontendFeature }>,
                any,
                any,
            >
            | Promise<
                Iterable<
                    | FrontendFeatureLoader
                    | FrontendFeature
                    | Promise<{ default: FrontendFeatureLoader | FrontendFeature }>,
                    any,
                    any,
                >,
            >
            | AsyncIterable<
                | FrontendFeatureLoader
                | FrontendFeature
                | { default: FrontendFeatureLoader | FrontendFeature },
                any,
                any,
            >;
    }
    Index

    Methods

    Methods

    • Parameters

      Returns
          | Iterable<
              | FrontendFeatureLoader
              | FrontendFeature
              | Promise<{ default: FrontendFeatureLoader | FrontendFeature }>,
              any,
              any,
          >
          | Promise<
              Iterable<
                  | FrontendFeatureLoader
                  | FrontendFeature
                  | Promise<{ default: FrontendFeatureLoader | FrontendFeature }>,
                  any,
                  any,
              >,
          >
          | AsyncIterable<
              | FrontendFeatureLoader
              | FrontendFeature
              | { default: FrontendFeatureLoader | FrontendFeature },
              any,
              any,
          >