fix esbuild and typing issues

This commit is contained in:
A
2026-05-19 22:12:40 -03:00
committed by Bruno Miiller
parent f92bcd630d
commit c96de5ccbc
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ const fromBlobPropsToEntity = (
let hash: undefined | string = undefined;
if (props.contentMD5 !== undefined) {
hash = arrayBufferToHex(props.contentMD5.buffer);
hash = arrayBufferToHex(props.contentMD5.buffer as ArrayBuffer);
}
const entity: Entity = {
+1 -1
View File
@@ -575,7 +575,7 @@ export class FakeFsOnedriveFull extends FakeFs {
*/
async _putUint8ArrayByRange(
pathFragOrig: string,
payload: Uint8Array,
payload: Uint8Array<ArrayBuffer>,
rangeStart: number,
rangeEnd: number,
size: number