cc-translate 0.5.21 → 0.5.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/support.js +2 -2
- package/package.json +1 -1
- package/src/lib/support.ts +2 -2
- package/src/types/index.ts +1 -1
- package/types/index.d.ts +1 -1
package/lib/support.js
CHANGED
package/package.json
CHANGED
package/src/lib/support.ts
CHANGED
package/src/types/index.ts
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export interface ILanguage {
|
|
|
6
6
|
/**语言名称 */
|
|
7
7
|
name: string;
|
|
8
8
|
}
|
|
9
|
-
export type SupportLanguageType = "en" | "zh-CN" | "zh-TW" | "ja" | "ar" | "bn" | "de" | "es-ES" | "fr" | "hi" | "id" | "it" | "ko" | "ms" | "my" | "ne-NP" | "nl" | "pl" | "pt-PT" | "ru" | "tl" | "tr" | "vi" | "uk" | "ur-PK" | "th-
|
|
9
|
+
export type SupportLanguageType = "en" | "zh-CN" | "zh-TW" | "ja" | "ar" | "bn" | "de" | "es-ES" | "fr" | "hi" | "id" | "it" | "ko" | "ms" | "my" | "ne-NP" | "nl" | "pl" | "pt-PT" | "ru" | "tl" | "tr" | "vi" | "uk" | "ur-PK" | "th-TH";
|
|
10
10
|
export type SupportLanguageMap = Partial<Record<SupportLanguageType, ILanguage>>;
|
|
11
11
|
export interface ILogError {
|
|
12
12
|
error: Error;
|