| 16 | |
| 17 | declare namespace Handlebars { |
| 18 | export interface TemplateDelegate<T = any> { |
| 19 | (context: T, options?: RuntimeOptions): string; |
| 20 | } |
| 21 | |
| 22 | export type Template<T = any> = TemplateDelegate<T>|string; |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected