From d3fc1d325626bf5f3d280456e2224cab667f2aba Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sat, 4 Jul 2020 16:57:05 +0000 Subject: [PATCH] fix(core): update --- ts/index.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ts/index.ts b/ts/index.ts index 0817897..4db8dec 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -1,5 +1,12 @@ export interface ITypedRequest { method: string; + authInfo?: { + jwt: string; + }; + serverData?: { + jwtData: any; + jwtValid: boolean; + }; request: object; response: object; error?: { text: string; data: any };