* Implement this interface on your MVW/MVVM/MVC views such as Backbone.View
| 192 | * Implement this interface on your MVW/MVVM/MVC views such as Backbone.View |
| 193 | **/ |
| 194 | interface HandlebarsTemplatable { |
| 195 | template: HandlebarsTemplateDelegate; |
| 196 | } |
| 197 | |
| 198 | // NOTE: for backward compatibility of this typing |
| 199 | type HandlebarsTemplateDelegate<T = any> = Handlebars.TemplateDelegate<T>; |
nothing calls this directly
no outgoing calls
no test coverage detected