File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
packages/cloud_firestore/cloud_firestore_web/lib/src/interop Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -719,8 +719,9 @@ class CollectionReference<T extends firestore_interop.CollectionReferenceJsImpl>
719719 return _expando[jsObject] ?? = CollectionReference ._fromJsObject (jsObject);
720720 }
721721
722- factory CollectionReference (firestore_interop.CollectionReferenceJsImpl jsObject) =>
723- CollectionReference ._fromJsObject (jsObject);
722+ factory CollectionReference (
723+ firestore_interop.CollectionReferenceJsImpl jsObject) =>
724+ CollectionReference ._fromJsObject (jsObject);
724725
725726 CollectionReference ._fromJsObject (
726727 firestore_interop.CollectionReferenceJsImpl jsObject)
Original file line number Diff line number Diff line change @@ -472,7 +472,6 @@ extension type DocumentChangeJsImpl._(JSObject _) implements JSObject {
472472@staticInterop
473473external DocumentReferenceJsImpl get DocumentReferenceJsConstructor ;
474474
475-
476475extension type DocumentReferenceJsImpl ._(JSObject _) implements JSObject {
477476 external FirestoreJsImpl get firestore;
478477 external JSString get id;
@@ -758,7 +757,7 @@ extension type PersistentMultipleTabManager._(JSObject _) implements JSObject {
758757}
759758
760759/// A garbage collector deletes documents whenever they are not part of any active queries, and have no local mutations attached to them.
761- ///
760+ ///
762761extension type MemoryEagerGarbageCollector ._(JSObject _) implements JSObject {
763762 external JSString get kind;
764763}
@@ -829,7 +828,8 @@ extension PersistentCacheSettingsExtension on PersistentCacheSettings {
829828/// An settings object to configure an PersistentLocalCache instance.
830829///
831830/// See: <https://firebase.google.com/docs/reference/js/firestore_.persistentsingletabmanagersettings>.
832- extension type PersistentSingleTabManagerSettings ._(JSObject _) implements JSObject {
831+ extension type PersistentSingleTabManagerSettings ._(JSObject _)
832+ implements JSObject {
833833 /// Whether to force-enable persistent (IndexedDB) cache for the client.
834834 /// This cannot be used with multi-tab synchronization and is primarily
835835 /// intended for use with Web Workers.
You can’t perform that action at this time.
0 commit comments