import { initDB } from './db.js'; import { getNextWord, answerWord, getSessionStats } from './offline-engine.js'; import { syncQueue } from './sync.js'; await initDB(); window.Woordjes = { getNextWord, answerWord, getSessionStats, syncQueue }; window.addEventListener('online', () => { syncQueue(); });