aboutsummaryrefslogtreecommitdiff
path: root/utils/types/element-of.ts
blob: fcb144da8872db34b893039226db78b4f19fff7e (plain)
1
2
/** Element type of a readonly array (e.g., `ElementOf<typeof MONTH_NAMES>`). */
export type ElementOf<T extends readonly unknown[]> = T extends readonly (infer E)[] ? E : never