| 1 | export interface CliFlags { |
| 2 | color: boolean; |
| 3 | config?: string; |
| 4 | cwd: string; |
| 5 | "default-config"?: boolean; |
| 6 | edit?: string | boolean; |
| 7 | env?: string; |
| 8 | extends?: (string | number)[]; |
| 9 | help?: boolean; |
| 10 | "help-url"?: string; |
| 11 | from?: string; |
| 12 | "from-last-tag"?: boolean; |
| 13 | "git-log-args"?: string; |
| 14 | last?: boolean; |
| 15 | format?: string; |
| 16 | "parser-preset"?: string; |
| 17 | quiet: boolean; |
| 18 | to?: string; |
| 19 | version?: boolean; |
| 20 | verbose?: boolean; |
| 21 | /** @type {'' | 'text' | 'json'} */ |
| 22 | "print-config"?: string; |
| 23 | strict?: boolean; |
| 24 | "legacy-output"?: boolean; |
| 25 | _: (string | number)[]; |
| 26 | $0: string; |
| 27 | } |
nothing calls this directly
no outgoing calls
no test coverage detected