optionHelp: (
| { content: string; header: string; optionList?: undefined }
| { content: string[]; header: string; optionList?: undefined }
| {
content?: undefined;
header: string;
optionList: [
{ description: ...; multiple: ...; name: ...; type: ... },
{ description: ...; multiple: ...; name: ...; type: ... },
{
alias: ...;
description: ...;
multiple: ...;
name: ...;
type: ...;
typeLabel: ...;
},
];
}
)[] = ...