IFunctionTemplateConfiguration – GBG IDscan Documentation

IFunctionTemplateConfiguration

Configuration type which uses asynchronous function to retrieve the template string.

Signature:

export interface IFunctionTemplateConfiguration 

Properties

PropertyTypeDescription
processorPreProcessorThe PreProcessor which the resolved template should be passed through.
providerTemplateFunctionA function which will return the correct template string.
typeTemplateType.FunctionThe type of the template.

IFunctionTemplateConfiguration.processor property

The PreProcessor which the resolved template should be passed through.

Signature:

readonly processor: PreProcessor;

IFunctionTemplateConfiguration.provider property

A function which will return the correct template string.

Signature:

readonly provider: TemplateFunction;

IFunctionTemplateConfiguration.type property

The type of the template.

Signature:

readonly type: TemplateType.Function;

Was this page helpful?