diff2html/website/templates/helpers/partial.ts

6 lines
173 B
TypeScript
Raw Normal View History

2019-12-29 22:31:32 +00:00
import handlebars, { HelperOptions } from 'handlebars';
export default (name: string, options: HelperOptions): void => {
handlebars.registerPartial(name, options.fn);
};