Files
18xchat/assets/Scripts/chat18x/config/env/env.ts
T

26 lines
452 B
TypeScript
Raw Normal View History

2025-08-15 14:29:38 +08:00
/**
* 环境的类型,接口定义
*/
export enum Env {
2025-09-21 13:14:13 +08:00
Dev = "dev",
Test = "test",
Prod = "prod",
2025-08-15 14:29:38 +08:00
}
2025-09-21 13:14:13 +08:00
2025-08-15 14:29:38 +08:00
export interface CDNConfig {
2025-09-21 13:14:13 +08:00
bgm: string;
2025-08-15 14:29:38 +08:00
}
2025-09-21 13:14:13 +08:00
2025-08-15 14:29:38 +08:00
export interface Endpoints {
2025-09-21 13:14:13 +08:00
httpBase: string; // 业务 HTTP
socketBase: string; // WebSocket
cdn: CDNConfig; // 各类静态资源
2025-08-15 14:29:38 +08:00
}
2025-09-21 13:14:13 +08:00
2025-08-15 14:29:38 +08:00
export interface AppConfigShape {
2025-09-21 13:14:13 +08:00
env: Env;
endpoints: Endpoints;
// 其他:开关、埋点、灰度、版本号……
appVersion: string;
2025-08-15 14:29:38 +08:00
}