Address TS types #282

This commit is contained in:
Przemek Więch
2026-05-18 23:28:58 +02:00
parent 92dd39b311
commit 7f72789505

View File

@@ -93,7 +93,7 @@ async function loadGedzip(
const normalizedKey = fileName.replace(/\\/g, '/').toLowerCase();
images.set(
normalizedKey,
URL.createObjectURL(new Blob([unzipped[fileName]])),
URL.createObjectURL(new Blob([unzipped[fileName] as BlobPart])),
);
}
}