From c10199ab40e0013d646cfe8838c1cf1f3fbf9fb1 Mon Sep 17 00:00:00 2001 From: RaviAnand Mohabir Date: Wed, 12 Jan 2022 19:28:02 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20Add=20error=20type=20to?= =?UTF-8?q?=20CallbackResult?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index f8fddc4..77d722e 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1,2 +1,2 @@ export type Profile = any; -export type CallbackResult = [Profile, string | null]; +export type CallbackResult = [Profile, string | null, { error: string } | null];