diff2html/website/templates/helpers/partial.ts

6 lines
173 B
TypeScript
Raw Normal View History

import handlebars, { HelperOptions } from "handlebars";
export default (name: string, options: HelperOptions): void => {
handlebars.registerPartial(name, options.fn);
};