(batch: FIRWriteBatch)
| 1140 | _native: FIRWriteBatch; |
| 1141 | |
| 1142 | static fromNative(batch: FIRWriteBatch) { |
| 1143 | if (batch instanceof FIRWriteBatch) { |
| 1144 | const b = new WriteBatch(); |
| 1145 | b._native = batch; |
| 1146 | return b; |
| 1147 | } |
| 1148 | return null; |
| 1149 | } |
| 1150 | |
| 1151 | commit(): Promise<void> { |
| 1152 | return new Promise((resolve, reject) => { |
nothing calls this directly
no outgoing calls
no test coverage detected