(documentRef: DocumentReference)
| 1161 | } |
| 1162 | |
| 1163 | delete(documentRef: DocumentReference): WriteBatch { |
| 1164 | return WriteBatch.fromNative(this.native.deleteDocument(documentRef.native)); |
| 1165 | } |
| 1166 | |
| 1167 | set(documentRef: DocumentReference, data: DocumentData, options?: SetOptions): WriteBatch { |
| 1168 | if (options) { |
nothing calls this directly
no test coverage detected