Skip to content

Commit d1bb4d7

Browse files
committed
added typing
1 parent d331c8d commit d1bb4d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/globals.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ List<Version> g_NewRadicals = [
9292
List<Version> g_ResetAnki = [Version(3, 4, 6)];
9393

9494
/// The maxMiB size of the dictionary isar
95-
g_IsarDictMaxMiB = Platform.isIOS ? 384 : 512;
95+
int g_IsarDictMaxMiB = Platform.isIOS ? 384 : 512;
9696
/// The maxMiB size of the examples isar
97-
g_IsarExampleMaxMiB = Platform.isIOS ? 384 : 512;
97+
int g_IsarExampleMaxMiB = Platform.isIOS ? 384 : 512;
9898

9999
/// all localizations that are available in DaKanji
100100
const g_DaKanjiLocalizations = ["en", "de", "ru", "ja", "zh", "it", "fr", "es", "pl"];

0 commit comments

Comments
 (0)