build: remove ineffective dynamic import shims

This commit is contained in:
Peter Steinberger
2026-03-16 23:11:59 -07:00
parent efaa4dc5b3
commit 14d6b762fb
13 changed files with 131 additions and 13 deletions

View File

@@ -1 +1,9 @@
export { handleSlackMessageAction } from "openclaw/plugin-sdk/slack";
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);
}