UNPKG

smppjs

Version:
16 lines 443 B
import { DTO, DTOFunction } from '../index'; export interface DataSmResp extends DTO { command: { message_id: { type: 'Cstring'; value: string; }; }; } export type DataSmRespParams = { messageId?: string; }; export interface DataSmRespFunction extends DTOFunction<DataSmRespParams, DataSmResp> { ({ messageId }: DataSmRespParams): DataSmResp; } //# sourceMappingURL=data_sm_resp.d.ts.map