import Handlebars from 'handlebars';

/**
 * The 'readme' helper injects a block of text at the top of the generated .ts module.
 */
Handlebars.registerHelper(
    'readme',
    () => `// DO NOT MODIFY THIS FILE.
// It is automatically generated by the "npm build-dictionary" command.
// Refer to the readme for details.`
);

export { Handlebars };
