🏷️ Add error type to CallbackResult

This commit is contained in:
RaviAnand Mohabir 2022-01-12 19:28:02 +01:00
parent a748c345cb
commit c10199ab40

View File

@ -1,2 +1,2 @@
export type Profile = any;
export type CallbackResult = [Profile, string | null];
export type CallbackResult = [Profile, string | null, { error: string } | null];