TS2574error TS2574: A rest element type must be an array type.Broken Code ❌123type Operation = '+' | '-';type Calculation = [Operation, ...number];Fixed Code ✔️Simply turn ...number into ...number[]:123type Operation = '+' | '-';type Calculation = [Operation, ...number[]];