({ begin, commit })
| 325 | const collection = createCollection<{ id: string }>({ |
| 326 | sync: { |
| 327 | sync({ begin, commit }) { |
| 328 | begin() |
| 329 | commit() |
| 330 | }, |
| 331 | }, |
| 332 | getKey: (item) => item.id, |
| 333 | startSync: true, |
nothing calls this directly
no outgoing calls
no test coverage detected