mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 05:00:42 +00:00
15 lines
624 B
TypeScript
15 lines
624 B
TypeScript
// Public CLI/output helpers for plugins that share terminal-facing command behavior.
|
|
|
|
export * from "../cli/command-format.js";
|
|
export {
|
|
registerCommandGroups,
|
|
type CommandGroupEntry,
|
|
type CommandGroupPlaceholder,
|
|
} from "../cli/program/register-command-groups.js";
|
|
export * from "../cli/parse-duration.js";
|
|
export { resolveCliArgvInvocation, type CliArgvInvocation } from "../cli/argv-invocation.js";
|
|
export { shouldEagerRegisterSubcommands } from "../cli/command-registration-policy.js";
|
|
export * from "../cli/wait.js";
|
|
export { stylePromptTitle } from "../terminal/prompt-style.js";
|
|
export * from "../version.js";
|