smppjs
Version:
Modern approach to smpp protocol.
16 lines • 443 B
TypeScript
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