code-assist
Results
1
issues of
code-assist
On iOS 14.3, BackgroundTimer.runBackgroundTimer only run 30 second, the same as setInterval. Does this work as design ? ``` BackgroundTimer.runBackgroundTimer(()=>{ console.log("BackgroundTimer: Hello world. Now is: ", (new Date()).toLocaleString()); },2000); setInterval(()=>{...