Files
openclaw/src/terminal/prompt-select-styled.ts
2026-04-28 10:02:20 +01:00

7 lines
233 B
TypeScript

import { select } from "@clack/prompts";
import { styleSelectParams } from "./prompt-select-styled-params.js";
export function selectStyled<T>(params: Parameters<typeof select<T>>[0]) {
return select(styleSelectParams(params));
}