mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-26 08:31:55 +00:00
11 lines
419 B
TypeScript
11 lines
419 B
TypeScript
import { listSkillCommandsForAgents as listSkillCommandsForAgentsImpl } from "openclaw/plugin-sdk/command-auth";
|
|
|
|
type ListSkillCommandsForAgents =
|
|
typeof import("openclaw/plugin-sdk/command-auth").listSkillCommandsForAgents;
|
|
|
|
export function listSkillCommandsForAgents(
|
|
...args: Parameters<ListSkillCommandsForAgents>
|
|
): ReturnType<ListSkillCommandsForAgents> {
|
|
return listSkillCommandsForAgentsImpl(...args);
|
|
}
|