UNPKG

ts-api-core

Version:

Nodejs api framework core

13 lines (12 loc) 354 B
/** MySQL 配置 */ export interface IMySQLConfig { host: string; port: number; user: string; password: string; database: string; connectTimeout?: number; /** 字符集设置,默认 'utf8', 如果要支持符号表情,需要设置为 'utf8mb4' */ charset?: string; maxQueryExecutionTime?: number; }