objet générique de type dactylographié non tableau

type NotArray<T> = T extends Array<unknown> ? never : T;

function f<T>(arg: NotArray<T>) {

}
Famous Flatworm