mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 09:20:44 +00:00
20 lines
400 B
TypeScript
20 lines
400 B
TypeScript
export type PluginConfigUiHint = {
|
|
label?: string;
|
|
help?: string;
|
|
tags?: string[];
|
|
advanced?: boolean;
|
|
sensitive?: boolean;
|
|
placeholder?: string;
|
|
};
|
|
|
|
export type PluginFormat = "openclaw" | "bundle";
|
|
|
|
export type PluginBundleFormat = "codex" | "claude" | "cursor";
|
|
|
|
export type PluginDiagnostic = {
|
|
level: "warn" | "error";
|
|
message: string;
|
|
pluginId?: string;
|
|
source?: string;
|
|
};
|