CollectionField

source

Field types that are collections (like containers, except for strings). .

type CollectionField<T> = FieldWhereContravariant<
  T,
  any[] | Set<any> | Map<any, any>
>;