Converted imports to ES6 module syntax

This commit is contained in:
Kyle Gretchev
2015-08-04 20:47:16 -04:00
parent 070e3a5e09
commit 52ef0043e7
8 changed files with 50 additions and 52 deletions
+3 -3
View File
@@ -5,7 +5,7 @@
/* =================== USAGE ===================
import express = require('express');
import * as express from "express";
var app = express();
=============================================== */
@@ -24,8 +24,8 @@ declare module Express {
declare module "express" {
import http = require('http');
import serveStatic = require('serve-static');
import * as http from "http";
import * as serveStatic from "serve-static";
function e(): e.Express;