Translations

This commit is contained in:
Renan LE CARO 2025-03-31 20:08:17 +02:00
parent d52472a34d
commit af65f22c70
14 changed files with 515 additions and 315 deletions

2
src/types.d.ts vendored
View file

@ -9,6 +9,7 @@ export type RawLevel = {
bricks: string;
svg: number | null;
color: string;
credit?: string;
};
export type Level = {
name: string;
@ -19,6 +20,7 @@ export type Level = {
color: string;
threshold: number;
sortKey: number;
credit?: string;
};
export type Palette = { [k: string]: string };