@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
9 lines (7 loc) • 439 B
JavaScript
import { Dt as theme, Et as isRich } 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 };