2026-05-20 21:39:12 +08:00

19 lines
323 B
TypeScript

/**
* 默认配置常量
*/
export const DEFAULT_CONFIG = {
/** 默认端口 */
PORT: 3000,
/** 默认超时时间(毫秒) */
TIMEOUT: 30000,
} as const;
/**
* 平台名称映射
*/
export const PLATFORM_NAMES: Record<string, string> = {
taobao: '淘宝',
jd: '京东',
pdd: '拼多多',
} as const;