@dazejs/framework
Version:
Daze.js - A powerful web framework for Node.js
16 lines (15 loc) • 420 B
TypeScript
import { View } from '.';
import { Application } from '../foundation/application';
import { Request } from '../http/request';
export declare class ViewFactory {
app: Application;
view: View;
constructor(view: View);
combineVars(request: Request): {
sessionValue(key: string): any;
readonly __token__: any;
} & {
[key: string]: any;
};
output(request: Request): any;
}