Skip to content

Commit

Permalink
feat(i18n): improve literal string union (#8516)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Aug 14, 2024
1 parent ef9f992 commit 9bf0f8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/i18n/types/language-names.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export type TuiLanguageName =
| string
| 'belarusian'
| 'chinese'
| 'dutch'
Expand All @@ -18,4 +17,5 @@ export type TuiLanguageName =
| 'spanish'
| 'turkish'
| 'ukrainian'
| 'vietnamese';
| 'vietnamese'
| (Record<never, never> & string);

0 comments on commit 9bf0f8c

Please sign in to comment.