wundertec-core
Version:
Librería estándar de utilidades e integraciones AWS + helpers generales
10 lines (9 loc) • 511 B
TypeScript
import { PublishCommandInput, PublishCommandOutput } from "@aws-sdk/client-sns";
/**
* Envía un SMS a un número de teléfono.
*/
export declare function sendSMS(phoneNumber: string, message: string, options?: Omit<PublishCommandInput, "PhoneNumber" | "Message">): Promise<PublishCommandOutput>;
/**
* Publica un mensaje en un topic SNS.
*/
export declare function publishTopic(topicArn: string, message: string, options?: Omit<PublishCommandInput, "TopicArn" | "Message">): Promise<PublishCommandOutput>;