Skip to content

Commit 58dcc66

Browse files
committed
style(lint): result of yarn lint:js --fix after prettier upgrade
new prettier versions sometimes come with slightly changed formatting
1 parent 4bce13c commit 58dcc66

File tree

4 files changed

+10
-16
lines changed

4 files changed

+10
-16
lines changed

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,7 @@ export namespace FirebaseAppCheckTypes {
121121
debugToken?: string;
122122
}
123123

124-
export interface ReactNativeFirebaseAppCheckProviderWebOptions
125-
extends ReactNativeFirebaseAppCheckProviderOptions {
124+
export interface ReactNativeFirebaseAppCheckProviderWebOptions extends ReactNativeFirebaseAppCheckProviderOptions {
126125
/**
127126
* The web provider to use, either `reCaptchaV3` or `reCaptchaEnterprise`, defaults to `reCaptchaV3`
128127
*/
@@ -134,8 +133,7 @@ export namespace FirebaseAppCheckTypes {
134133
siteKey?: string;
135134
}
136135

137-
export interface ReactNativeFirebaseAppCheckProviderAppleOptions
138-
extends ReactNativeFirebaseAppCheckProviderOptions {
136+
export interface ReactNativeFirebaseAppCheckProviderAppleOptions extends ReactNativeFirebaseAppCheckProviderOptions {
139137
/**
140138
* The apple provider to use, either `deviceCheck` or `appAttest`, or `appAttestWithDeviceCheckFallback`,
141139
* defaults to `DeviceCheck`. `appAttest` requires iOS 14+ or will fail, `appAttestWithDeviceCheckFallback`
@@ -144,8 +142,7 @@ export namespace FirebaseAppCheckTypes {
144142
provider?: 'debug' | 'deviceCheck' | 'appAttest' | 'appAttestWithDeviceCheckFallback';
145143
}
146144

147-
export interface ReactNativeFirebaseAppCheckProviderAndroidOptions
148-
extends ReactNativeFirebaseAppCheckProviderOptions {
145+
export interface ReactNativeFirebaseAppCheckProviderAndroidOptions extends ReactNativeFirebaseAppCheckProviderOptions {
149146
/**
150147
* The android provider to use, either `debug` or `playIntegrity`. default is `playIntegrity`.
151148
*/

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,7 @@ export interface ReactNativeFirebaseAppCheckProviderOptions {
103103
debugToken?: string;
104104
}
105105

106-
export interface ReactNativeFirebaseAppCheckProviderWebOptions
107-
extends ReactNativeFirebaseAppCheckProviderOptions {
106+
export interface ReactNativeFirebaseAppCheckProviderWebOptions extends ReactNativeFirebaseAppCheckProviderOptions {
108107
/**
109108
* The web provider to use, either `reCaptchaV3` or `reCaptchaEnterprise`, defaults to `reCaptchaV3`
110109
*/
@@ -116,8 +115,7 @@ export interface ReactNativeFirebaseAppCheckProviderWebOptions
116115
siteKey?: string;
117116
}
118117

119-
export interface ReactNativeFirebaseAppCheckProviderAppleOptions
120-
extends ReactNativeFirebaseAppCheckProviderOptions {
118+
export interface ReactNativeFirebaseAppCheckProviderAppleOptions extends ReactNativeFirebaseAppCheckProviderOptions {
121119
/**
122120
* The apple provider to use, either `deviceCheck` or `appAttest`, or `appAttestWithDeviceCheckFallback`,
123121
* defaults to `DeviceCheck`. `appAttest` requires iOS 14+ or will fail, `appAttestWithDeviceCheckFallback`
@@ -126,8 +124,7 @@ export interface ReactNativeFirebaseAppCheckProviderAppleOptions
126124
provider?: 'debug' | 'deviceCheck' | 'appAttest' | 'appAttestWithDeviceCheckFallback';
127125
}
128126

129-
export interface ReactNativeFirebaseAppCheckProviderAndroidOptions
130-
extends ReactNativeFirebaseAppCheckProviderOptions {
127+
export interface ReactNativeFirebaseAppCheckProviderAndroidOptions extends ReactNativeFirebaseAppCheckProviderOptions {
131128
/**
132129
* The android provider to use, either `debug` or `playIntegrity`. default is `playIntegrity`.
133130
*/

packages/database/lib/modular/query.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ export type OnDisconnect = FirebaseDatabaseTypes.OnDisconnect;
1111
* as the write to the backend completes.
1212
*/
1313
export interface ThenableReference
14-
extends DatabaseReference,
15-
Pick<Promise<DatabaseReference>, 'then' | 'catch'> {}
14+
extends DatabaseReference, Pick<Promise<DatabaseReference>, 'then' | 'catch'> {}
1615

1716
export type Unsubscribe = () => void;
1817

packages/firestore/lib/index.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -599,8 +599,9 @@ export namespace FirebaseFirestoreTypes {
599599
* A QueryDocumentSnapshot offers the same API surface as a DocumentSnapshot.
600600
* Since query results contain only existing documents, the exists() method will always be true and data() will never return 'undefined'.
601601
*/
602-
export interface QueryDocumentSnapshot<T extends DocumentData = DocumentData>
603-
extends DocumentSnapshot<T> {
602+
export interface QueryDocumentSnapshot<
603+
T extends DocumentData = DocumentData,
604+
> extends DocumentSnapshot<T> {
604605
/**
605606
* A QueryDocumentSnapshot is always guaranteed to exist.
606607
*/

0 commit comments

Comments
 (0)