mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-15 12:00:43 +00:00
14 lines
276 B
TypeScript
14 lines
276 B
TypeScript
export type ConfigUiHint = {
|
|
label?: string;
|
|
help?: string;
|
|
tags?: string[];
|
|
group?: string;
|
|
order?: number;
|
|
advanced?: boolean;
|
|
sensitive?: boolean;
|
|
placeholder?: string;
|
|
itemTemplate?: unknown;
|
|
};
|
|
|
|
export type ConfigUiHints = Record<string, ConfigUiHint>;
|