Type alias WithTitle

WithTitle: {
    breaks?: number;
    noWrap?: true;
    style?: Style;
    title?: string;
}

Defines attributes for a help section with wrapping.

Type declaration

  • Optional Readonly breaks?: number

    The number of line breaks to insert before the section. (Defaults to 0 for the first section, else 2)

  • Optional Readonly noWrap?: true

    True to disable wrapping of the provided text or headings.

  • Optional Readonly style?: Style

    The style of the section heading or option group headings. (Defaults to tf.bold)

  • Optional Readonly title?: string

    The section heading or default group heading. May contain inline styles.