Configuration type which uses asynchronous function to retrieve the template string.
Signature:
export interface IFunctionTemplateConfiguration
Properties
Property | Type | Description |
---|---|---|
processor | PreProcessor | The PreProcessor which the resolved template should be passed through. |
provider | TemplateFunction | A function which will return the correct template string. |
type | TemplateType.Function | The 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;