mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-04 12:33:34 +00:00
15 lines
383 B
TypeScript
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;
|
|
};
|
|
};
|