type-challenges / type-challenges

Collection of TypeScript type challenges with online judge

Home Page:https://tsch.js.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

18142 - All

pea-sys opened this issue · comments

// your answers
type All<A extends unknown[], Elt> =
  Equal<Equal<A[number], A[0]> & Equal<A[0], Elt>, true>