@rbxts/expect > InferArrayElement
InferArrayElement type
Helper type for inferring the type of an array.
Signature:
type InferArrayElement<T> = T extends (infer U)[] ? U : never;
Example
function include<T>(source: T, expectedValue: InferArrayElement<T>) {
return source.includes(expectedValue);
}