6 lines
173 B
TypeScript
6 lines
173 B
TypeScript
|
|
import handlebars, { HelperOptions } from "handlebars";
|
||
|
|
|
||
|
|
export default (name: string, options: HelperOptions): void => {
|
||
|
|
handlebars.registerPartial(name, options.fn);
|
||
|
|
};
|