type ModalitiesArrayToUnion<T> = T[number];
定义于: types.ts:246
辅助类型,用于将只读的模态数组转换为联合类型。例如,readonly ['text', 'image'] -> 'text' | 'image'
T extends ReadonlyArray<Modality>