(leaderboard): Get data from IndexedDB

Get leaderboard data from IndexedDB using localForage package
This commit is contained in:
2024-02-15 19:11:31 +01:00
parent 6d22409763
commit 6aca7b49cf
7 changed files with 79 additions and 35 deletions
+1
View File
@@ -1,3 +1,4 @@
export type Difficulty = 'beginner' | 'intermediate' | 'expert';
export type CellValue = 'empty' | 'bomb' | number;
export type GridType = { hidden: boolean; value: CellValue; flag: boolean }[][];
export type LeaderBoardItem = { date: string; time: `${number | ''}${number}m ${number}${number}s` };