adding remaining languages and pos
This commit is contained in:
parent
1f42239779
commit
091a901485
1 changed files with 2 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
export const SUPPORTED_LANGUAGE_CODES = ["en", "it"] as const;
|
||||
export const SUPPORTED_LANGUAGE_CODES = ["en", "it", "de", "fr", "es"] as const;
|
||||
export type SupportedLanguageCode = (typeof SUPPORTED_LANGUAGE_CODES)[number];
|
||||
|
||||
export const SUPPORTED_POS = ["noun", "verb"] as const;
|
||||
export const SUPPORTED_POS = ["noun", "verb", "adjective", "adverb"] as const;
|
||||
export type SupportedPos = (typeof SUPPORTED_POS)[number];
|
||||
|
||||
export const GAME_ROUNDS = ["3", "10"] as const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue