mirror of
https://github.com/openclaw/openclaw.git
synced 2026-09-07 00:28:21 +00:00
5 lines
289 B
TypeScript
5 lines
289 B
TypeScript
import { createLazyRuntimeModule } from "openclaw/plugin-sdk/lazy-runtime";
|
|
// Telegram plugin module owns the lazy send runtime import.
|
|
export type TelegramSendModule = typeof import("./send.js");
|
|
|
|
export const loadTelegramSendModule = createLazyRuntimeModule(() => import("./send.js"));
|