chore: update deps

This commit is contained in:
鲁树人
2025-09-03 21:27:38 +09:00
parent c41e5ae531
commit 62e49804a5
9 changed files with 1222 additions and 1256 deletions

View File

@@ -5,7 +5,7 @@ export class MMKVParser {
private offset = 4;
private length: number;
constructor(private view: DataView) {
constructor(private view: DataView<ArrayBuffer>) {
const payloadLength = view.getUint32(0, true);
this.length = 4 + payloadLength;