Preview:```ts
import type {
Equal,
Expect,
NotAny,
} from "@type-challenges/utils"
const elems = [{a: "apple"}, {a: "orange", b: 1}]
const {a, ...rest} = elems[Math.floor(Math.random())]
if (a === "orange") {
type Y = typeof rest.b
type X = Expect<Equal<Y, number>>
...```
You can choose specific lines to embed by selecting them before copying the link.