8 lines
231 B
TypeScript
8 lines
231 B
TypeScript
|
// TODO: Actually do a partial download
|
||
|
export function downloadDatafile() {
|
||
|
// Get download status from local storage
|
||
|
const stepDataDownloadStatus = localStorage.getItem(
|
||
|
"stepDataDownloadStatus",
|
||
|
) ?? { hash: null };
|
||
|
}
|