mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-19 22:10:51 +00:00
10 lines
399 B
TypeScript
10 lines
399 B
TypeScript
import { handleSlackMessageAction as handleSlackMessageActionImpl } from "openclaw/plugin-sdk/slack";
|
|
|
|
type HandleSlackMessageAction = typeof import("openclaw/plugin-sdk/slack").handleSlackMessageAction;
|
|
|
|
export async function handleSlackMessageAction(
|
|
...args: Parameters<HandleSlackMessageAction>
|
|
): ReturnType<HandleSlackMessageAction> {
|
|
return await handleSlackMessageActionImpl(...args);
|
|
}
|