TS中的如何使用联合枚举类型的Key enum str { A, B, C, D } // 获取联合类型key type strUnion = keyof typeof str;// 'A'|'B'|'C'|'D'