19 lines
323 B
TypeScript
Raw Permalink Normal View History

2026-05-20 21:39:12 +08:00
/**
*
*/
export const DEFAULT_CONFIG = {
/** 默认端口 */
PORT: 3000,
/** 默认超时时间(毫秒) */
TIMEOUT: 30000,
} as const;
/**
*
*/
export const PLATFORM_NAMES: Record<string, string> = {
taobao: '淘宝',
jd: '京东',
pdd: '拼多多',
} as const;