type ModalitiesArrayToUnion<T> = T[number];
type ModalitiesArrayToUnion<T> = T[number];
Defined in: types.ts:133
Helper type to convert a readonly array of modalities to a union type. e.g., readonly ['text', 'image'] -> 'text' | 'image'
T extends ReadonlyArray<Modality>
