CODEBASE: Update SaveData type to be compatible with TS 5.9 and upgrade TS (#2457)

This commit is contained in:
catloversg
2026-01-29 03:26:06 +07:00
committed by GitHub
parent afddd284fc
commit 8b07879ad9
9 changed files with 26 additions and 16 deletions
+1 -1
View File
@@ -46,4 +46,4 @@ export interface IMinMaxRange {
}
// Type of save data. The base64 format is string, the binary format is Uint8Array.
export type SaveData = string | Uint8Array;
export type SaveData = string | Uint8Array<ArrayBuffer>;