From 1365ee03214d9a2830c5f556a0f0b2c8932cf86f Mon Sep 17 00:00:00 2001 From: onehorsetown Date: Thu, 18 Apr 2019 13:13:22 -0400 Subject: [PATCH] `RequestEvent` now using parameterized type `T` --- lib/Transport.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transport.d.ts b/lib/Transport.d.ts index 989d02c76..89ec11573 100644 --- a/lib/Transport.d.ts +++ b/lib/Transport.d.ts @@ -50,7 +50,7 @@ interface TransportOptions { } export interface RequestEvent { - body: any; + body: T; statusCode: number | null; headers: anyObject | null; warnings: string[] | null;