Go to repository

Interface CLIGeneralFlags

The general flags that a CLI app accepts, when configured to used them. Note that currently the default flags cannot be changed.

interface CLIGeneralFlags {
    help: {
        long: string;
        short: string;
    };
    in: {
        long: string;
        short: string;
    };
    language: {
        long: string;
        short: string;
    };
    out: {
        long: string;
        short: string;
    };
    version: {
        long: string;
        short: string;
    };
}

Properties

help: {
    long: string;
    short: string;
}

The help flags, both short and long

in: {
    long: string;
    short: string;
}

The input file flags, both short and long

language: {
    long: string;
    short: string;
}

The language set flags, both short and long

out: {
    long: string;
    short: string;
}

The output file flags, both short and long

version: {
    long: string;
    short: string;
}

The version information flags, both short and long