Wrapped
Wrapped<Opening,Text,Closing>
Wrapped<Opening,Text,Closing>export type Wrapped<
Opening extends string = '',
Text extends string = '',
Closing extends string = ''
> = `${Opening}${Text}${Closing}`;Generic type variables
Returns
Last updated