Merge pull request #10503 from eknkc/koa-static-patch

Fix error TS2497 on import * as X from 'koa-static
This commit is contained in:
Nathan Shively-Sanders
2016-08-08 16:24:36 -07:00
committed by GitHub

View File

@@ -46,6 +46,6 @@ declare module "koa-static" {
*/
gzip?: boolean;
}): { (ctx: Koa.Context, next?: () => any): any };
namespace serve{}
export = serve;
}