Skip to content

Commit

Permalink
fix: deepsource
Browse files Browse the repository at this point in the history
  • Loading branch information
hcote committed Jan 8, 2025
1 parent ac3948b commit 5786b34
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/@magic-sdk/types/src/modules/user-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,15 +141,15 @@ export type RecoverAccountEventHandlers = {

// Event sent
[RecoverAccountEventOnReceived.SmsOtpSent]: ({ phoneNumber }: { phoneNumber: string }) => void;
[RecoverAccountEventOnReceived.LoginThrottled]: (error: string) => {};
[RecoverAccountEventOnReceived.LoginThrottled]: (error: string) => void;
[RecoverAccountEventOnReceived.InvalidSmsOtp]: ({
errorMessage,
errorCode,
}: {
errorMessage: string;
errorCode: string;
}) => {};
[RecoverAccountEventOnReceived.SmsVerified]: () => {};
[RecoverAccountEventOnReceived.AccountRecovered]: () => {};
[RecoverAccountEventOnReceived.UpdateEmailRequired]: () => {};
}) => void;
[RecoverAccountEventOnReceived.SmsVerified]: () => void;
[RecoverAccountEventOnReceived.AccountRecovered]: () => void;
[RecoverAccountEventOnReceived.UpdateEmailRequired]: () => void;
};

0 comments on commit 5786b34

Please sign in to comment.