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 , by default of the value captured from the provided indicates the opening type of a new instance.
Wrapper<Opening,
Text
,Closing>
Text
extends
string
=
''
Wrapper<Opening,Text,
Closing
>
Closing
extends
string
=
string
A generic type variable constrained by the , by default of the value captured from the provided indicates the text type of a new instance.
A generic type variable constrained by the , by default of the value captured from the provided indicates the closing type of a new instance.