@k-msg/provider
Version:
Complete provider system with adapters and implementations for K-Message platform
5 lines (4 loc) • 394 B
TypeScript
import { KMsgError, type Result, type SendOptions, type SendResult } from "@k-msg/core";
import type { AligoRuntimeContext } from "./aligo.internal.types";
export declare function collectSendWarnings(options: SendOptions, providerId: string): SendResult["warnings"];
export declare function sendWithAligo(ctx: AligoRuntimeContext, options: SendOptions): Promise<Result<SendResult, KMsgError>>;