Documentation for Simbo's Packages
    Preparing search index...

    Interface CliOption

    An option of the CLI.

    interface CliOption {
        aliases: Set<string>;
        description: string[];
        type: "string" | "boolean";
    }
    Index

    Properties

    aliases: Set<string>

    The aliases for the option.

    description: string[]

    The description of the option.

    type: "string" | "boolean"

    Whether the option is a boolean or a string flag.