Files
openclaw/src/config/types.cli.ts
2026-06-04 04:01:24 -04:00

15 lines
383 B
TypeScript

// Defines CLI configuration types.
export type CliBannerTaglineMode = "random" | "default" | "off";
export type CliConfig = {
banner?: {
/**
* Controls CLI banner tagline behavior.
* - "random": pick from tagline pool (default)
* - "default": always use DEFAULT_TAGLINE
* - "off": hide tagline text
*/
taglineMode?: CliBannerTaglineMode;
};
};