I see some type definition like this in Typescript: deep keyof of a nested object:
type Prev = [never, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...0[]]
I can't understand what the last part ...0[]
means.
Is there a document for this? Thanks