smarthbs/ts/index.ts

11 lines
385 B
TypeScript
Raw Normal View History

2022-07-24 13:30:19 +00:00
import * as plugins from './smarthbs.plugins.js';
export type TTemplateStringType = 'filePath' | 'code';
2017-02-19 03:12:17 +00:00
export let handlebars = plugins.handlebars;
2022-07-24 13:30:19 +00:00
export * from './smarthbs.compile.js';
import './smarthbs.helpers.js';
export * from './smarthbs.partials.js';
export * from './smarthbs.template.js';
export * from './smarthbs.variables.js';
export * from './smarthbs.postprocess.js';