// TypeScript fix to make it see this file as a module. export {}; type HollloQueue = { dumpBackup: () => Promise; dumpSettings: () => Promise; }; declare global { interface Window { HollloQueue: HollloQueue; } }