File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -188,13 +188,10 @@ export class FirestoreError extends FirebaseError {
188
188
export type FirestoreErrorCode = ' cancelled' | ' unknown' | ' invalid-argument' | ' deadline-exceeded' | ' not-found' | ' already-exists' | ' permission-denied' | ' resource-exhausted' | ' failed-precondition' | ' aborted' | ' out-of-range' | ' unimplemented' | ' internal' | ' unavailable' | ' data-loss' | ' unauthenticated' ;
189
189
190
190
// @public
191
- export interface FirestoreSettings {
191
+ export interface FirestoreSettings extends Settings {
192
192
cacheSizeBytes? : number ;
193
193
experimentalAutoDetectLongPolling? : boolean ;
194
194
experimentalForceLongPolling? : boolean ;
195
- host? : string ;
196
- ignoreUndefinedProperties? : boolean ;
197
- ssl? : boolean ;
198
195
}
199
196
200
197
// @public
@@ -406,6 +403,13 @@ export type SetOptions = {
406
403
readonly mergeFields? : Array <string | FieldPath >;
407
404
};
408
405
406
+ // @public
407
+ export interface Settings {
408
+ host? : string ;
409
+ ignoreUndefinedProperties? : boolean ;
410
+ ssl? : boolean ;
411
+ }
412
+
409
413
// @public
410
414
export function snapshotEqual<T >(left : DocumentSnapshot <T > | QuerySnapshot <T >, right : DocumentSnapshot <T > | QuerySnapshot <T >): boolean ;
411
415
You can’t perform that action at this time.
0 commit comments