From 820145214ba85fac91f8fdfd6d97b9ce617666a0 Mon Sep 17 00:00:00 2001 From: Jan Dolezel Date: Wed, 2 Jan 2019 15:06:56 +0100 Subject: [PATCH] Opting into typesafe koa --- types/koa-router/koa-router-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/koa-router/koa-router-tests.ts b/types/koa-router/koa-router-tests.ts index e1c90c636d..51e95fb8a5 100644 --- a/types/koa-router/koa-router-tests.ts +++ b/types/koa-router/koa-router-tests.ts @@ -1,7 +1,7 @@ import Koa = require("koa"); import Router = require("koa-router"); -const app = new Koa(); +const app = new Koa<{}, {}>(); const router = new Router({ prefix: "/users"