mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-15 10:30:43 +00:00
9 lines
154 B
TypeScript
9 lines
154 B
TypeScript
export type SkillInstallResult = {
|
|
ok: boolean;
|
|
message: string;
|
|
stdout: string;
|
|
stderr: string;
|
|
code: number | null;
|
|
warnings?: string[];
|
|
};
|