From 2bf45d19a1a7a3c82f3eb6c8a3967c26d48a09c8 Mon Sep 17 00:00:00 2001 From: vilicvane Date: Sun, 6 Dec 2015 23:39:25 +0800 Subject: [PATCH] add empty lines --- src/router.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/router.ts b/src/router.ts index 9cbcb58..b8d6580 100644 --- a/src/router.ts +++ b/src/router.ts @@ -73,24 +73,34 @@ const hop: HOP = Object.prototype.hasOwnProperty; export class Router { /** Root of route files on file system, ends without '/'. */ routesRoot: string; + /** Root of views files on file system, ends without '/'. */ viewsRoot: string; + /** Extension of view files. */ viewsExtension: string; + /** Error view files folder name. */ errorViewsFolder: string; + /** Default sub site. */ defaultSubsite: string; + /** Prefix of requesting path, starts with '/' but ends without '/'. */ prefix: string; + /** Express application. */ app: _Express; + /** Actual router behind the scence. */ router: ExpressRouter; + /** Error transformer. */ errorTransformer: ErrorTransformer; + /** User provider. */ userProvider: UserProvider>; + /** Whether running under production mode. */ production: boolean;