🔍 Search Terms
initial element of the tuple is a rest element
✅ Viability Checklist
⭐ Suggestion
type T1 = [...string[], number, boolean]
declare const head: T1[0]
// Actual: string | number | boolean
// Expected: string | number
📃 Motivating Example
💻 Use Cases
#56883