1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2026-03-31 17:41:52 +00:00

fix: fix for tslint

This commit is contained in:
kevguy
2017-07-19 17:15:21 +08:00
parent 2593083662
commit 2570c56c69
5 changed files with 7 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
import {Request, Response} from "express";
import { Request, Response } from "express";
/**
* GET /
@@ -9,4 +9,3 @@ export let index = (req: Request, res: Response) => {
title: "Home"
});
};