Configuration type which provides a URL to retrieve the template string from.
NOTE: Nothing is prepended to the URL string before the request is made, so it is possible to use either fully qualified addresses or relative addresses for the provider configuration.
Signature:
export interface IUrlTemplateConfiguration
Properties
Property | Type | Description |
---|---|---|
processor | PreProcessor | The PreProcessor which the resolved template should be passed through. |
provider | string | The URL to retrieve the template string from. |
type | TemplateType.Url | The type of the template. |
IUrlTemplateConfiguration.processor property
The PreProcessor
which the resolved template should be passed through.
Signature:
readonly processor: PreProcessor;
IUrlTemplateConfiguration.provider property
The URL to retrieve the template string from.
Signature:
readonly provider: string;
IUrlTemplateConfiguration.type property
The type of the template.
Signature:
readonly type: TemplateType.Url;