Skip to content

Commit

Permalink
added typing
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptainDario committed Oct 23, 2024
1 parent d331c8d commit d1bb4d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/globals.dart
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ List<Version> g_NewRadicals = [
List<Version> g_ResetAnki = [Version(3, 4, 6)];

/// The maxMiB size of the dictionary isar
g_IsarDictMaxMiB = Platform.isIOS ? 384 : 512;
int g_IsarDictMaxMiB = Platform.isIOS ? 384 : 512;
/// The maxMiB size of the examples isar
g_IsarExampleMaxMiB = Platform.isIOS ? 384 : 512;
int g_IsarExampleMaxMiB = Platform.isIOS ? 384 : 512;

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

0 comments on commit d1bb4d7

Please sign in to comment.