Generic type variables
Last updated
Was this helpful?
Last updated
Was this helpful?
Wrapper<
Opening
,Text,Closing>
Opening
extends
string
=
string
A generic type variable constrained by the string
, by default of the value captured from the provided indicates the opening type of a new Wrapper
instance.
Wrapper<Opening,
Text
,Closing>
Text
extends
string
=
''
Wrapper<Opening,Text,
Closing
>
Closing
extends
string
=
string
A generic type variable constrained by the string
, by default of the value captured from the provided indicates the text type of a new Wrapper
instance.