Validate that every type in T is present in tuple L.
Type Parameters
Lextendsreadonlyany[]
Tuple to validate
T
Union of required element types
Remarks
This will check if each type in the union T can be found in the tuple L using
IsTypeInList. If all types in T are found in L, this resolves to L. If any type
in T is missing from L, this resolves to never.
Validate that every type in
Tis present in tupleL.