mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 08:20:43 +00:00
7 lines
233 B
TypeScript
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));
|
|
}
|