@anglr/translate-extensions
Version:
Angular module - external translation loader for ngx-translate
18 lines • 717 B
JavaScript
/**
* Options that are used within ExternalTranslationLoader
*/
export class ExternalTranslationLoaderOptions {
//######################### constructor #########################
/**
* Creates instance of ExternalTranslationLoaderOptions
* @param resourcePrefix - Prefix that is used for all requests
* @param resources - Names of resources that holds translations
* @param resourceSufix - Sufix that is used for all requests
*/
constructor(resourcePrefix, resources, resourceSufix) {
this.resourcePrefix = resourcePrefix;
this.resources = resources;
this.resourceSufix = resourceSufix;
}
}
//# sourceMappingURL=externalTranslationLoaderOptions.js.map