Configuration type which returns a static string as the template string.
Signature:
export interface IStringTemplateConfiguration
Properties
Property | Type | Description |
---|---|---|
processor | PreProcessor | The PreProcessor which the resolved template should be passed through. |
provider | string | The string to use for the template. |
type | TemplateType.String | The type of the template. |
IStringTemplateConfiguration.processor property
The PreProcessor
which the resolved template should be passed through.
Signature:
readonly processor: PreProcessor;
IStringTemplateConfiguration.provider property
The string to use for the template.
Signature:
readonly provider: string;
IStringTemplateConfiguration.type property
The type of the template.
Signature:
readonly type: TemplateType.String;