Sequence NODE_169
Easy

Create a Generic Array Wrapper Type

TypeScript
Technical Specification

Define a generic type that wraps any type T as an array of T.

Input/Output Samples
Input:List<string>
Output:string[]
Optimal Logic Path
type List<T> = T[];
Architectural Deep-Dive
Generic aliases like List<T> are syntactic sugar that improve readability and reuse.