mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 06:15:51 +00:00
6 lines
212 B
TypeScript
6 lines
212 B
TypeScript
/** CustomSelect / 权限规则列表等处的简单选项。 */
|
||
export type Option = {
|
||
label: string // 展示给用户的文本
|
||
value: string // 选中后回传的内部值(如规则 key、占位符)
|
||
}
|