Files
Moltbot/src/config/types.cli.ts
2026-03-03 00:31:51 +00:00

14 lines
347 B
TypeScript

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;
};
};