mirror of
https://github.com/farcasclaudiu/openclaw.git
synced 2026-06-27 17:01:17 +03:00
0f7f7bb95f
Co-authored-by: Christof <10854026+Evizero@users.noreply.github.com>
19 lines
637 B
TypeScript
19 lines
637 B
TypeScript
export {
|
|
downloadMSTeamsAttachments,
|
|
/** @deprecated Use `downloadMSTeamsAttachments` instead. */
|
|
downloadMSTeamsImageAttachments,
|
|
} from "./attachments/download.js";
|
|
export { buildMSTeamsGraphMessageUrls, downloadMSTeamsGraphMedia } from "./attachments/graph.js";
|
|
export {
|
|
buildMSTeamsAttachmentPlaceholder,
|
|
summarizeMSTeamsHtmlAttachments,
|
|
} from "./attachments/html.js";
|
|
export { buildMSTeamsMediaPayload } from "./attachments/payload.js";
|
|
export type {
|
|
MSTeamsAccessTokenProvider,
|
|
MSTeamsAttachmentLike,
|
|
MSTeamsGraphMediaResult,
|
|
MSTeamsHtmlAttachmentSummary,
|
|
MSTeamsInboundMedia,
|
|
} from "./attachments/types.js";
|