UNPKG

655 BTypeScriptView Raw
1/**
2 * @see https://github.com/fastify/point-of-view/blob/master/index.d.ts
3 */
4export interface PointOfViewOptions {
5 engine: {
6 ejs?: any;
7 eta?: any;
8 nunjucks?: any;
9 pug?: any;
10 handlebars?: any;
11 marko?: any;
12 mustache?: any;
13 'art-template'?: any;
14 twig?: any;
15 liquid?: any;
16 dot?: any;
17 };
18 templates?: string;
19 includeViewExtension?: boolean;
20 options?: object;
21 charset?: string;
22 maxCache?: number;
23 production?: boolean;
24 defaultContext?: object;
25 layout?: string;
26 root?: string;
27 viewExt?: string;
28 propertyName?: string;
29}