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

223 - IsAny

DevilTea opened this issue · comments

// your answers
type IsAny<T> = [T, 1] extends [0, T] ? true : false