mirror of https://github.com/OpenVidu/openvidu.git
ov-components: Fix available langs for allowing custom ones
parent
760cf604eb
commit
0074b28d3a
|
@ -1,4 +1,5 @@
|
|||
export type AvailableLangs = 'en' | 'es' | 'de' | 'fr' | 'cn' | 'hi' | 'it' | 'ja' | 'nl' | 'pt';
|
||||
type OpenViduLangs = 'en' | 'es' | 'de' | 'fr' | 'cn' | 'hi' | 'it' | 'ja' | 'nl' | 'pt';
|
||||
export type AvailableLangs = OpenViduLangs | string;
|
||||
|
||||
export type AdditionalTranslationsType = Record<AvailableLangs, Record<string, any>>;
|
||||
|
||||
|
|
Loading…
Reference in New Issue