DDRCompanion/lib/idb.ts

8 lines
231 B
TypeScript
Raw Normal View History

2024-05-16 01:04:15 +00:00
// TODO: Actually do a partial download
export function downloadDatafile() {
// Get download status from local storage
const stepDataDownloadStatus = localStorage.getItem(
"stepDataDownloadStatus",
) ?? { hash: null };
}