Files
HTFX-CRM-Sales/types/common.ts
2025-07-07 16:05:18 +08:00

27 lines
431 B
TypeScript

export enum Locales {
ar_SA = 'ar-SA',
en_US = 'en-US',
es_ES = 'es-ES',
hi_IN = 'hi-IN',
id_ID = 'in-ID',
ko_KR = 'ko-KR',
th_TH = 'th-TH',
vi_VN = 'vi-VN',
zh_CN = 'zh-CN',
zh_TW = 'zh-TW'
}
export type LocaleType = keyof typeof Locales;
export type MtServer = {
/**
* MT服务器编码
*/
id: number;
if_def_server: number;
if_enable_mt4_type: number;
/**
* MT服务器名称
*/
server_name: string;
};