UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

50 lines (43 loc) 1.46 kB
// Type definitions for express-handlebars // Project: https://github.com/ericf/express-handlebars // Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>, Igor Dultsev <https://github.com/yhaskell> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped interface PartialTemplateOptions { cache?: boolean; precompiled?: boolean; } interface RenderOptions { cache?: boolean; data?: Object; helpers?: any; partials?: any; } interface ExphbsOptions { handlebars?: any; extname?: string; layoutsDir?: string; partialsDir?: any; defaultLayout?: string; helpers?: any; compilerOptions?: any; } interface Exphbs { engine: Function; extname: string; compiled: Object; precompiled: Object; create(options?: ExphbsOptions): Exphbs; getPartials(options?: PartialTemplateOptions): Promise<Object>; getTemplate(filePath: string, options?: PartialTemplateOptions): Promise<Function>; getTemplates(dirPath: string, options?: PartialTemplateOptions): Promise<Object>; render(filePath: string, context: Object, options?: RenderOptions): Promise<string>; renderView(viewPath: string, optionsOrCallback: any, callback?: () => string): void; } interface ExpressHandlebars { (options?: ExphbsOptions): Function; create (options?: ExphbsOptions): Exphbs; } declare module "express-handlebars" { var exphbs: ExpressHandlebars; export = exphbs; }