From e488c5c5d4a4140108d86b1538b3be1bd5edcbc2 Mon Sep 17 00:00:00 2001 From: Jim Puls Date: Thu, 28 Dec 2023 18:01:34 -0800 Subject: [PATCH] docs(auth): un-cross docs for two states in PhoneAuthState enum (#7537) --- packages/auth/lib/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/auth/lib/index.d.ts b/packages/auth/lib/index.d.ts index 8041c2d9fe..90650342bf 100644 --- a/packages/auth/lib/index.d.ts +++ b/packages/auth/lib/index.d.ts @@ -241,11 +241,11 @@ export namespace FirebaseAuthTypes { */ export interface PhoneAuthState { /** - * The timeout specified in {@link auth#verifyPhoneNumber} has expired. + * SMS message with verification code sent to phone number. */ CODE_SENT: 'sent'; /** - * SMS message with verification code sent to phone number. + * The timeout specified in {@link auth#verifyPhoneNumber} has expired. */ AUTO_VERIFY_TIMEOUT: 'timeout'; /**