style: oxfmt fixes (#925) (thanks @grp06)

This commit is contained in:
Peter Steinberger
2026-01-15 03:22:54 +00:00
parent 8f797f213e
commit 5c52dbf661
5 changed files with 11 additions and 11 deletions

View File

@@ -112,9 +112,7 @@ export type ClawdbotPluginApi = {
tool: AnyAgentTool | ClawdbotPluginToolFactory,
opts?: { name?: string; names?: string[] },
) => void;
registerChannel: (
registration: ClawdbotPluginChannelRegistration | ChannelPlugin,
) => void;
registerChannel: (registration: ClawdbotPluginChannelRegistration | ChannelPlugin) => void;
registerGatewayMethod: (method: string, handler: GatewayRequestHandler) => void;
registerCli: (registrar: ClawdbotPluginCliRegistrar, opts?: { commands?: string[] }) => void;
registerService: (service: ClawdbotPluginService) => void;