@mdfriday/foundry
Version:
The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.
7 lines (6 loc) • 322 B
TypeScript
import { Resource, TemplateClient as ITemplateClient, TemplateSvc } from '../type';
export declare class TemplateClient implements ITemplateClient {
private templateExecutor;
constructor(templateExecutor: TemplateSvc);
executeAsTemplate(resource: Resource, targetPath: string, data: any): Promise<Resource>;
}