(transaction: {
mutations: Array<PendingMutation<Record<string, unknown>>>
})
| 2717 | } |
| 2718 | |
| 2719 | const acceptMutations = async (transaction: { |
| 2720 | mutations: Array<PendingMutation<Record<string, unknown>>> |
| 2721 | }) => { |
| 2722 | await runtime.acceptTransactionMutations(transaction) |
| 2723 | } |
| 2724 | |
| 2725 | const persistedUtils: PersistedCollectionUtils = { |
| 2726 | acceptMutations, |
nothing calls this directly
no test coverage detected