Variable htmlServicesProviderConst

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

Registers all the HTML services on the container.

Type declaration

  • htmlGeneratorProvider: ResourceCreator<"provider", "register", ((options?) => ((app) => void)), ProviderRegisterFn<Jimpex>>

Type declaration

    Type declaration

      Example

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

      Generated using TypeDoc