fix TS changes

This commit is contained in:
MathMan05
2025-10-07 11:32:09 -05:00
parent 9a626b96f0
commit c9d80a5d47
+1 -1
View File
@@ -1,7 +1,7 @@
export class ProgressiveArray {
read?: ReadableStreamDefaultReader<Uint8Array>;
controller: AbortController;
cbuff? = new Uint8Array(0);
cbuff?: Uint8Array<ArrayBufferLike> = new Uint8Array(0);
index = 0;
sizeLeft = 0;
ready: Promise<void>;