You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* The encodings supported by the terminal.
*/
enum TerminalEncoding
{
/**
* A terminal that does not support any colors.
*/
NONE,
/**
* Node terminal supports a 16-color palette.
*/
NODE_16_COLORS,
/**
* Node terminal supports a 256-color palette.
*/
NODE_256_COLORS,
/**
* Node terminal supports a 24-bit color palette.
*/
NODE_16MILLION_COLORS
}
I am getting two global members in the output:
TerminalEncoding and TerminalEncoding[undefined] 4 times (one per enum value).
I assume that the latter should read TerminalEncoding.NODE, TerminalEncoding.NODE_16_COLORS and so on.
The text was updated successfully, but these errors were encountered:
Given this input:
I am getting two global members in the output:
TerminalEncoding
andTerminalEncoding[undefined]
4 times (one per enum value).I assume that the latter should read
TerminalEncoding.NODE
,TerminalEncoding.NODE_16_COLORS
and so on.The text was updated successfully, but these errors were encountered: