Files
openclaw/extensions/telegram/src/send-runtime.ts

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"));