@hitechline/pdf-maker
Version:
8 lines (7 loc) • 319 B
TypeScript
import type { compile } from 'handlebars';
export interface HandlebarsHandlerOptions {
path: string;
context?: Record<string, any>;
compileOptions?: Exclude<Parameters<typeof compile>[1], undefined>;
}
export declare const handlebarsHandler: import("../..").Handler<"handlebars", HandlebarsHandlerOptions>;