Skip to content

Commit

Permalink
add empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
vilicvane committed Dec 6, 2015
1 parent 7d513ad commit 2bf45d1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<RequestUser<any>>;

/** Whether running under production mode. */
production: boolean;

Expand Down

0 comments on commit 2bf45d1

Please sign in to comment.