smarthbs/dist/smarthbs.template.d.ts

10 lines
363 B
TypeScript
Raw Normal View History

2019-09-10 15:58:14 +00:00
import * as plugins from './smarthbs.plugins';
/**
* get a template for a file on disk
*/
export declare let getTemplateForFile: (filePathArg: string) => Promise<plugins.handlebars.TemplateDelegate<any>>;
/**
* get a template for string
*/
export declare let getTemplateForString: (fileStringArg: string) => Promise<plugins.handlebars.TemplateDelegate<any>>;