Type alias HTMLGeneratorProviderOptions

HTMLGeneratorProviderOptions: Partial<HTMLGeneratorOptions> & {
    serviceName?: string;
    valuesServiceName?: string;
}

Custom options for the provider that will register an instance of HTMLGenerator as a service.

Type declaration

  • Optional serviceName?: string

    The name that will be used to register the service on the container. This is to allow multiple "instances" of the service to be created.

    Default

    'htmlGenerator'
    
  • Optional valuesServiceName?: string

    The name of a service that the generator will use in order to read the values that will be replaced on the template. If the service is available, the values from configKeys will be ignored.

    Default

    'htmlGeneratorValues'
    

Generated using TypeDoc