mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 21:42:55 +00:00
* refactor: move terminal core into package * refactor: move terminal module files * fix: clean terminal package CI followups * test: update lint suppression allowlist * fix: ship terminal core runtime aliases
23 lines
1003 B
TypeScript
23 lines
1003 B
TypeScript
/**
|
|
* @deprecated Broad public SDK barrel. Prefer focused CLI/runtime subpaths and
|
|
* avoid adding new imports here.
|
|
*/
|
|
|
|
export * from "../cli/command-format.js";
|
|
export { inheritOptionFromParent } from "../cli/command-options.js";
|
|
export { runCommandWithRuntime } from "../cli/cli-utils.js";
|
|
export { formatHelpExamples } from "../cli/help-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 { note } from "../../packages/terminal-core/src/note.js";
|
|
export { stylePromptTitle } from "../../packages/terminal-core/src/prompt-style.js";
|
|
export { theme } from "../../packages/terminal-core/src/theme.js";
|
|
export * from "../version.js";
|