From f3c1479b6986b5e0c136cbbe0af0f76f82661f88 Mon Sep 17 00:00:00 2001 From: TonyYang Date: Tue, 22 Nov 2016 12:28:43 +0800 Subject: [PATCH] Correct type --- supertest/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supertest/index.d.ts b/supertest/index.d.ts index 36dc7a512e..ae0db82d33 100644 --- a/supertest/index.d.ts +++ b/supertest/index.d.ts @@ -7,7 +7,7 @@ import * as superagent from "superagent" export = supertest; -declare function supertest(app: any): supertest.SuperTest; +declare function supertest(app: any): supertest.SuperTest; declare namespace supertest { interface Response extends superagent.Response { }