fix: types (wip)

This commit is contained in:
Théo 2023-09-13 17:24:40 +02:00
parent fc2ed7be52
commit 7d499e73ba

View file

@ -38,6 +38,7 @@ export interface Puzzle {
name: string;
content: string;
scoreMax: number;
show: boolean;
tags: Tag[] | null;
tries?: number;
score?: number;
@ -60,7 +61,6 @@ export interface Leaderboard {
completions: number;
pseudo: string;
groups: Group[];
avatar: string;
rank: number;
}