type Letter = | 'a' | 'b' | 'c' | 'd' | 'e' | 'f' | 'g' | 'h' | 'i' | 'j' | 'k' | 'l' | 'm' | 'n' | 'o' | 'p' | 'q' | 'r' | 's' | 't' | 'u' | 'v' | 'w' | 'x' | 'y' | 'z'; /** A single letter character, valid as a short CLI flag (e.g. `'v'`, `'n'`, `'V'`). */ export type SingleChar = Letter | Uppercase; export interface PadroneFieldMeta { description?: string; /** Single-character short flags (stackable: `-abc` = `-a -b -c`). Used with single dash. */ flags?: readonly SingleChar[] | SingleChar; /** Multi-character alternative long names. Used with double dash (e.g. `--dry-run` for `--dryRun`). */ alias?: readonly string[] | string; /** * Custom negative keyword(s) for boolean options. When provided, `--` sets this option to `false`. * Disables the default `--no-