(pathOrRef: PathReference)
| 78 | } |
| 79 | |
| 80 | object<T>(pathOrRef: PathReference): AngularFireObject<T> { |
| 81 | const ref = inject(NgZone).runOutsideAngular(() => getRef(this.database, pathOrRef)); |
| 82 | return createObjectReference<T>(ref, this, this.injector); |
| 83 | } |
| 84 | |
| 85 | createPushId() { |
| 86 | const ref = inject(NgZone).runOutsideAngular(() => this.database.ref()); |
nothing calls this directly
no test coverage detected