(
tx: KVStoreTransaction,
buffer: DBChanges,
options: ApplyChangesOptions
)
| 24 | } |
| 25 | |
| 26 | async applyChanges( |
| 27 | tx: KVStoreTransaction, |
| 28 | buffer: DBChanges, |
| 29 | options: ApplyChangesOptions |
| 30 | ) { |
| 31 | return this.dataStore.applyChanges(tx, buffer, options); |
| 32 | } |
| 33 | |
| 34 | async applyChangesWithTimestamp( |
| 35 | tx: KVStoreTransaction, |
nothing calls this directly
no test coverage detected