@gguf/claw
Version:
WhatsApp gateway CLI (Baileys web) with Pi RPC agent
9 lines (7 loc) • 437 B
JavaScript
import { O as isRich, k as theme } from "./entry.js";
//#region src/terminal/prompt-style.ts
const stylePromptMessage = (message) => isRich() ? theme.accent(message) : message;
const stylePromptTitle = (title) => title && isRich() ? theme.heading(title) : title;
const stylePromptHint = (hint) => hint && isRich() ? theme.muted(hint) : hint;
//#endregion
export { stylePromptMessage as n, stylePromptTitle as r, stylePromptHint as t };