Variable htmlServicesProviderConst

htmlServicesProvider: {
    htmlGeneratorProvider: ResourceCreator<"provider", "register", ((options?: HTMLGeneratorProviderOptions) => ((app: Jimpex) => void)), ProviderRegisterFn<Jimpex>>;
} & Record<string, Resource<"provider", "register", ProviderRegisterFn<Jimpex>>> & {} & {} & Record<string, unknown> = ...

Registers all the HTML services on the container.

// Register the collection on the container
container.register(htmlServicesProvider);
// Getting access to one the services instance
const htmlGenerator = container.get<HTMLGenerator>('htmlGenerator');