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

@@ -1,7 +1,7 @@
import type { StagingKugouKey } from '~/features/settings/keyFormats';
import { MMKVParser } from '../MMKVParser';
export function parseAndroidKugouMMKV(view: DataView): Omit<StagingKugouKey, 'id'>[] {
export function parseAndroidKugouMMKV(view: DataView<ArrayBuffer>): Omit<StagingKugouKey, 'id'>[] {
const mmkv = new MMKVParser(view);
const result: Omit<StagingKugouKey, 'id'>[] = [];
while (!mmkv.eof) {