22 lines
274 B
TypeScript
22 lines
274 B
TypeScript
![]() |
export class MessageColors
|
||
|
{
|
||
|
static gray( text:string )
|
||
|
{
|
||
|
return text;
|
||
|
}
|
||
|
|
||
|
static yellow( text:string )
|
||
|
{
|
||
|
return text;
|
||
|
}
|
||
|
|
||
|
static black( text:string )
|
||
|
{
|
||
|
return text;
|
||
|
}
|
||
|
|
||
|
static bgRed( text:string )
|
||
|
{
|
||
|
return text;
|
||
|
}
|
||
|
}
|