(initialContent?: Content)
| 250 | const delPersisterListener = () => (persisterListener = undefined); |
| 251 | |
| 252 | const startSync = async (initialContent?: Content) => { |
| 253 | syncing = 1; |
| 254 | return await persister.startAutoPersisting(initialContent); |
| 255 | }; |
| 256 | |
| 257 | const stopSync = async () => { |
| 258 | syncing = 0; |
nothing calls this directly
no test coverage detected
searching dependent graphs…