@fireenjin/cli
Version:
A set of tools for speeding up production of full-stack Firebase projects.
13 lines (12 loc) • 387 B
TypeScript
export default function renderHandlebarsTemplateToFile(templateFile: string, outFile: string, { data, formatWithPrettier, partials, helpers, templatesDir, }?: {
formatWithPrettier?: boolean;
data?: any;
partials?: {
id: string;
html?: string;
}[];
helpers?: {
[helperName: string]: any;
};
templatesDir?: string;
}): Promise<unknown>;