Variable frontendServicesProviderConst

frontendServicesProvider: {
    frontendFsProvider: Resource<"provider", "register", ProviderRegisterFn<Jimpex>>;
} & Record<string, Resource<"provider", "register", ProviderRegisterFn<Jimpex>>> & {} & {} & Record<string, unknown> = ...

Registers all the frontend services on the container.

Type declaration

  • frontendFsProvider: Resource<"provider", "register", ProviderRegisterFn<Jimpex>>

Type declaration

    Type declaration

      Example

      // Register the collection on the container
      container.register(frontendServicesProvider);
      // Getting access to one the services instance
      const frontendFs = container.get<FrontendFs>('frontendFs');

      Generated using TypeDoc