In Typescript, you can define an Array of Strings as string[]
or Array<string>
. My team prefers the more succinct string[]
.
When defining a Set of Strings, is there also a more succinct way similar to string[]
? Or, is the only option the more verbose Set<string>
?
CodePudding user response:
No shorthand syntax exists for Set
s like there are are for Array
s. The only option is Set<MyTypeHere>
.