UNPKG

@ingestkorea/client-sens

Version:

INGESTKOREA SDK Naver Cloud Platform SENS Client for Node.js.

11 lines (10 loc) 257 B
import { SendSMSInput, SendSMSOutput } from "./SendSMS"; export type SendFile = { name: string; body?: string; }; export interface SendMMSInput extends SendSMSInput { files: SendFile[]; } export interface SendMMSOutput extends SendSMSOutput { }