mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-21 17:21:36 +00:00
10 lines
319 B
TypeScript
10 lines
319 B
TypeScript
export type PluginSurfaceManifest = {
|
|
channels?: string[];
|
|
providers?: string[];
|
|
contracts?: Record<string, unknown>;
|
|
skills?: unknown[];
|
|
};
|
|
|
|
/** Render translatable surface labels with exact manifest identifiers as inline code. */
|
|
export function resolvePluginSurface(manifest: PluginSurfaceManifest): string;
|