Preview:```ts
type A = string[] & unknown[]
type A0 = A[0]
// ^?
type B = [string] & unknown[]
type B0 = B[0]
// ^?
type C = string[] & [unknown]
type C0 = C[0]
// ^?```
You can choose specific lines to embed by selecting them before copying the link.