smarthbs/ts/index.ts

11 lines
364 B
TypeScript
Raw Normal View History

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