jimpex
    Preparing search index...

    Type Alias HTMLGeneratorValuesService

    An external service that can be used to provide the values the generator will replace in the template.

    type HTMLGeneratorValuesService = {
        getValues: (
            options: HTMLGeneratorOptions,
        ) => Promise<Record<string, unknown>>;
    }
    Index

    Properties

    Properties

    getValues: (options: HTMLGeneratorOptions) => Promise<Record<string, unknown>>

    A function that will be called to get the values to replace in the template.

    Type Declaration