Interface HelpPluginOptions

Options for the help plugin.

interface HelpPluginOptions {
    helpFlags?: [string, ...string[]];
    maxWidth?: number;
}

Properties

helpFlags?: [string, ...string[]]

The names of the help flags.

['h', 'help']
maxWidth?: number

The max line-length for the help text.

80