* Retrieve the document once.
(options?: firebase.firestore.GetOptions)
| 103 | * Retrieve the document once. |
| 104 | */ |
| 105 | get(options?: firebase.firestore.GetOptions) { |
| 106 | return from(this.ref.get(options)).pipe( |
| 107 | pendingUntilEvent(this.injector) |
| 108 | ); |
| 109 | } |
| 110 | } |