1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00

Starting to add support for more languages

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
Florian Bouillon 2021-06-29 17:19:57 +02:00
parent 1e146de202
commit b1c866b38b
Signed by: Florian Bouillon
GPG Key ID: 50BD648F12C86AB6

2
interfaces.d.ts vendored
View File

@ -1,4 +1,4 @@
export type SupportedLanguages = 'en' | 'fr'
export type SupportedLanguages = 'en' | 'fr' | 'es' | 'it' | 'pt' | 'de'
export type Languages<T = string> = Partial<Record<SupportedLanguages, T>>