@nestjs/platform-fastify
Version:
Nest - modern, fast, powerful node.js web framework (@platform-fastify)
29 lines (28 loc) • 634 B
TypeScript
/**
* @see https://github.com/fastify/point-of-view/blob/master/index.d.ts
*/
export interface PointOfViewOptions {
engine: {
ejs?: any;
eta?: any;
nunjucks?: any;
pug?: any;
handlebars?: any;
mustache?: any;
'art-template'?: any;
twig?: any;
liquid?: any;
dot?: any;
};
templates?: string;
includeViewExtension?: boolean;
options?: object;
charset?: string;
maxCache?: number;
production?: boolean;
defaultContext?: object;
layout?: string;
root?: string;
viewExt?: string;
propertyName?: string;
}