mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-18 08:51:34 +00:00
6 lines
289 B
TypeScript
6 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"));
|