UNPKG

sim800

Version:

A modern and opiniated module for SIM800 GSM modems ( SIM800 / SIM800L ).

12 lines (11 loc) 595 B
import { Subject } from 'rxjs'; import { Sim800OutgoingSms, Sim800OutgoingSmsStreamEvent, SmsPduData } from '../interfaces/sim800-outgoing-sms.interface'; /** * * @param data * @param smsStream$ * @param outboxSpooler * * This function is used to handle the sms stream publications after a pdu part has been sent. */ export declare const handleSmsStreamAfterPduPart: (data: SmsPduData[], smsStream$: Subject<Sim800OutgoingSmsStreamEvent>, outboxSpooler: Sim800OutgoingSms[], compositeId: number[], text: string, deliveryReport: boolean, number: string, messageReference: number) => void;