Interface StyleOptions

interface StyleOptions {
    bg?: StyleColor;
    bold?: boolean;
    color?: StyleColor;
    dim?: boolean;
    italic?: boolean;
    strikethrough?: boolean;
    underline?: boolean;
}

Properties

bold?: boolean
color?: StyleColor
dim?: boolean
italic?: boolean
strikethrough?: boolean
underline?: boolean