Skip to content

BuiltinsConfig ​

Built-in flag settings accepted by CLIBuilder.builtins and the builtins field of CLIDefinition.

version and completions are absent by design: .version() and .completions() are opt-in, so a CLI declines those two by not calling them.

Signatures ​

ts
interface BuiltinsConfig {}

Members ​

Properties ​

help ​

Root --help/-h, command-level --help/-h, and the bare help token.

ts
help?: BuiltinMode;

json ​

Root --json.

ts
json?: BuiltinMode;

quiet ​

Root --quiet/-q.

ts
quiet?: BuiltinMode;

See Also ​

Released under the MIT License.