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.

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