Type alias WithColumn<A>

WithColumn<A>: {
    align?: A;
    breaks?: number;
    hidden?: boolean;
    indent?: number;
}

Defines attributes common to all help columns.

Type Parameters

  • A extends string = Alignment

    The type of text alignment

Type declaration

  • Optional Readonly align?: A

    The text alignment for this column. (Defaults to 'left')

  • Optional Readonly breaks?: number

    The number of line breaks to insert before each entry in this column. (Defaults to 0)

  • Optional Readonly hidden?: boolean

    Whether the column should be hidden. (Defaults to false)

  • Optional Readonly indent?: number

    The indentation level for this column. (Defaults to 2)