Command line argument parser result.

interface ICliArgv {
    args: (string | number | boolean)[];
    options: Record<string, string | number | boolean>;
    optionsShort: Record<string, string | number | boolean>;
}

Properties

args: (string | number | boolean)[]
options: Record<string, string | number | boolean>
optionsShort: Record<string, string | number | boolean>