mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-24 03:15:46 -06:00
10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
import { sendMessageSlack as sendMessageSlackImpl } from "../../plugin-sdk/slack.js";
|
|
|
|
type RuntimeSend = {
|
|
sendMessage: typeof import("../../plugin-sdk/slack.js").sendMessageSlack;
|
|
};
|
|
|
|
export const runtimeSend = {
|
|
sendMessage: sendMessageSlackImpl,
|
|
} satisfies RuntimeSend;
|