Interface HandlebarsTemplateEngineProviderProps

interface HandlebarsTemplateEngineProviderProps {
    helperProviders?: readonly HandlebarsHelperProvider[];
    helpers?: readonly HandlebarsHelper[];
    helpersDirs?: readonly string[];
    partialsDirs?: readonly string[];
}

Properties

helperProviders?: readonly HandlebarsHelperProvider[]

List of helper providers.

helpers?: readonly HandlebarsHelper[]

List of helpers.

helpersDirs?: readonly string[]

List of file paths to directories from where to load Handlebars helpers implemented with plain JavaScript. The file paths can be absolute or relative to the current project dir. Non-existing file paths are ignored.

partialsDirs?: readonly string[]

List of file paths to directories from where to load Handlebars partial files. The file paths can be absolute or relative to the current project dir. Non-existing file paths are ignored.

Generated using TypeDoc