@ingestkorea/client-sens
Version:
INGESTKOREA SDK Naver Cloud Platform SENS Client for Node.js.
13 lines (12 loc) • 379 B
TypeScript
import { SendSMSRequest, SendSMSResult } from "./SendSMS.js";
export declare const MMS_MAX_SUPPORT_FILE_SIZE = 300;
export declare const MMS_SUPPORT_FILE_EXTENSION: string[];
export type SendFile = {
name: string;
body?: string;
};
export interface SendMMSRequest extends SendSMSRequest {
files: SendFile[];
}
export interface SendMMSResult extends SendSMSResult {
}