jimpex
    Preparing search index...

    Type Alias HTMLGeneratorConstructorOptions

    HTMLGeneratorConstructorOptions: Partial<HTMLGeneratorOptions> & {
        inject: {
            config: Config;
            frontendFs: FrontendFs;
            logger: Logger;
            valuesService?: HTMLGeneratorValuesService;
        };
    }

    The options to construct a HTMLGenerator.

    Type Declaration

    • inject: {
          config: Config;
          frontendFs: FrontendFs;
          logger: Logger;
          valuesService?: HTMLGeneratorValuesService;
      }

      A dictionary with the dependencies to inject.

      • config: Config
      • frontendFs: FrontendFs
      • logger: Logger
      • OptionalvaluesService?: HTMLGeneratorValuesService

        A service that can provide the values to replace in the template. If specified, the values from configKeys will be ignored.