UNPKG

@visulima/cerebro

Version:

A delightful toolkit for building cross-runtime CLIs for Node.js, Deno, and Bun.

30 lines (29 loc) 787 B
/** * Output with this option will be formatted. */ export declare const OUTPUT_NORMAL = 1; /** * Output with this option will be passed as-is. */ export declare const OUTPUT_RAW = 2; /** * Output with this option will have any formatting stripped away. */ export declare const OUTPUT_PLAIN = 4; /** * Output with this verbosity won't write anything at all. */ export declare const VERBOSITY_QUIET = 16; /** * Output with this verbosity will write default content. */ export declare const VERBOSITY_NORMAL = 32; /** * Output with this verbosity will be more detailed. */ export declare const VERBOSITY_VERBOSE = 64; /** * Output with this verbosity will reveal internals. */ export declare const VERBOSITY_DEBUG = 128; export declare const POSITIONALS_KEY = "positionals";