/** Element type of a readonly array (e.g., `ElementOf`). */ export type ElementOf = T extends readonly (infer E)[] ? E : never