statisticHelperOptions: [
    {
        alias: "v";
        description: "Run with verbose logging";
        name: "verbose";
        type: BooleanConstructor;
    },
    {
        alias: "h";
        description: "Print this usage guide";
        name: "help";
        type: BooleanConstructor;
    },
    {
        alias: "i";
        defaultOption: true;
        description: "Pass single file as src to read from";
        multiple: false;
        name: "input";
        type: StringConstructor;
        typeLabel: "{underline file}";
    },
    {
        alias: "o";
        description: "Folder to write the output to";
        name: "output-dir";
        type: StringConstructor;
        typeLabel: "{underline folder}";
    },
] = ...