@progress/kendo-charts
Version:
Kendo UI platform-independent Charts library
18 lines (14 loc) • 328 B
JavaScript
let current = {
compile: function(template) {
return template;
}
};
class TemplateService {
static register(userImplementation) {
current = userImplementation;
}
static compile(template, options) {
return current.compile(template, options);
}
}
export default TemplateService;