Skip to content

Commit 5d7241b

Browse files
frwmikehardy
andauthored
fix(app-check, types): Correct ReactNativeFirebaseAppCheckProvider options type (#6911)
* fix(appcheck): Fixed ReactNativeFirebaseAppCheckProvider options type * Update packages/app-check/lib/index.d.ts --------- Co-authored-by: Mike Hardy <github@mikehardy.net>
1 parent 5766667 commit 5d7241b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

packages/app-check/lib/index.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -135,12 +135,12 @@ export namespace FirebaseAppCheckTypes {
135135
* so AppCheck has the same experience across all platforms, with the only difference being the native
136136
* providers you choose to use on each platform.
137137
*/
138-
configure(
139-
web?: ReactNativeFirebaseAppCheckProviderWebOptions,
140-
android?: ReactNativeFirebaseAppCheckProviderAndroidOptions,
141-
apple?: ReactNativeFirebaseAppCheckProviderAppleOptions,
142-
isTokenAutoRefreshEnabled?: boolean,
143-
): Promise<void>;
138+
configure(options: {
139+
web?: ReactNativeFirebaseAppCheckProviderWebOptions;
140+
android?: ReactNativeFirebaseAppCheckProviderAndroidOptions;
141+
apple?: ReactNativeFirebaseAppCheckProviderAppleOptions;
142+
isTokenAutoRefreshEnabled?: boolean;
143+
}): Promise<void>;
144144
}
145145

146146
/**

0 commit comments

Comments
 (0)