UNPKG

@typescript-package/wrapper

Version:

A lightweight TypeScript library to wrap the text with the opening and closing chars.

7 lines (6 loc) 421 B
/** * The `Wrapped` type indicates the text wrapped by the opening characters at the beginning and the closing characters at the end of the * text. * It's built from generic type variables in order `Opening`, `Text` and `Closing` on the template `${Opening}${Text}${Closing}`. */ export type Wrapped<Opening extends string = '', Text extends string = '', Closing extends string = ''> = `${Opening}${Text}${Closing}`;