UNPKG

@fireenjin/cli

Version:

A set of tools for speeding up production of full-stack Firebase projects.

15 lines (14 loc) 311 B
declare type CustomHelpers = { [helperName: string]: any; }; /** * Render a lump of handlebars */ export default function renderHandlebars(templateStr: string, data?: any, options?: { partials?: { id: string; html?: string; }[]; helpers?: CustomHelpers; }): string; export {};