Skip to content

Commit

Permalink
The typescript compiler will not save you from all errors. *cough* un…
Browse files Browse the repository at this point in the history
…it tests *cough*
  • Loading branch information
jburger committed Jun 30, 2016
1 parent 44273ae commit 700b58f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typescript_express/application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export class WebApi {
* @param app - express application
* @param port - port to listen on
*/
constructor(private app: express.Express, private port?: number) {
constructor(private app: express.Express, private port: number) {
this.configureMiddleware(app);
this.configureRoutes(app);
}
Expand Down

0 comments on commit 700b58f

Please sign in to comment.