Create a tuple filled with V, and the length of the tuple is L.
Signature:
export type Fill<L extends number, V> = L extends L ? InternalFill<L, V> : neverReferences: InternalFill
// Expect: [number, number, number]
type Foo = Fill<3, number>Create a tuple filled with V, and the length of the tuple is L.
Signature:
export type Fill<L extends number, V> = L extends L ? InternalFill<L, V> : neverReferences: InternalFill
// Expect: [number, number, number]
type Foo = Fill<3, number>