ModelFieldCollectionKey<M, T>: string & {
    [P in keyof M]: M[P] extends ModelCollection<T>
        ? P
        : never
}[keyof M]

Type Parameters