mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
273 B
TypeScript
12 lines
273 B
TypeScript
import * as Handlebars from 'handlebars';
|
|
import * as helpers from 'handlebars-helpers';
|
|
|
|
const handlebars = Handlebars.create();
|
|
|
|
helpers();
|
|
helpers('helper');
|
|
helpers(['helper']);
|
|
helpers({handlebars});
|
|
helpers('helper', {handlebars});
|
|
helpers(['helper'], {handlebars});
|