Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | /**
* 消息发送模块统一导出
*/
export * from './send.ts';
export * from './card.ts';
// 兼容旧实现(`src/services/messaging.ts`)中仍被外部调用的 API。
// 注意:这里只显式导出函数,避免与 `send.ts/card.ts` 的类型/常量命名冲突。
export {
sendMessage,
sendProactive,
sendToUser,
sendToGroup,
sendTextToDingTalk,
sendMediaToDingTalk,
} from '../messaging.ts';
|