UNPKG

react-native-agora-chat

Version:
23 lines 727 B
/** * The translation language class, which contains the information of the translation languages. */ export declare class ChatTranslateLanguage { /** * The code of a target language. For example, the code for simplified Chinese is "zh-Hans". */ code: string; /** * The language name. For example, the name for simplified Chinese is "Chinese Simplified". */ name: string; /** * The native name of the language. For example, the native name of simplified Chinese is "Chinese (Simplified)". */ nativeName: string; constructor(params: { code: string; name: string; nativeName: string; }); } //# sourceMappingURL=ChatTranslateLanguage.d.ts.map