UNPKG

210 BPlain TextView Raw
1export interface IHtmlEngineHelper {
2 helperFunc(context: any, ...args: any[]): any;
3}
4
5export interface IHandlebarsOptions {
6 fn(context): string;
7 inverse(context: string): string;
8 hash?: any;
9}