| 37 | } |
| 38 | |
| 39 | export interface HelperOptions { |
| 40 | fn: TemplateDelegate; |
| 41 | inverse: TemplateDelegate; |
| 42 | hash: Record<string, any>; |
| 43 | data?: any; |
| 44 | } |
| 45 | |
| 46 | export interface HelperDelegate { |
| 47 | (context?: any, arg1?: any, arg2?: any, arg3?: any, arg4?: any, arg5?: any, options?: HelperOptions): any; |
nothing calls this directly
no outgoing calls
no test coverage detected