feat: sync catalog, server, and MusicFree updates

This commit is contained in:
2026-07-16 18:43:22 +08:00
parent 069af30dba
commit e9bb3df906
58 changed files with 4409 additions and 206 deletions
+4
View File
@@ -6,6 +6,10 @@ interface INativeUtils extends NativeModule {
requestStoragePermission: () => void;
isIgnoringBatteryOptimizations: () => Promise<boolean>;
requestIgnoreBatteryOptimizations: () => Promise<boolean>;
showPlaybackDiagnosticNotification: (
title: string,
message: string,
) => Promise<void>;
getWindowDimensions: () => { width: number, height: number }; // Fix bug: https://github.com/facebook/react-native/issues/47080
}