statisticOptions: [
    {
        alias: "v";
        description: "Run with verbose logging";
        name: "verbose";
        type: BooleanConstructor;
    },
    {
        alias: "h";
        description: "Print this usage guide";
        name: "help";
        type: BooleanConstructor;
    },
    {
        alias: "l";
        description: "Limit the number of files to process";
        name: "limit";
        type: NumberConstructor;
    },
    {
        alias: "i";
        defaultOption: true;
        defaultValue: readonly [];
        description: "Pass a folder or file as src to read from";
        multiple: true;
        name: "input";
        type: StringConstructor;
        typeLabel: "{underline files/folders}";
    },
] = ...