Renaming files
This commit is contained in:
16
src/SmppSession.ts
Normal file
16
src/SmppSession.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
export interface SmppSession {
|
||||
username: string,
|
||||
password: string,
|
||||
|
||||
sendPdu(pdu: object): Promise<object>;
|
||||
|
||||
sendSingle(Job: object): Promise<object>;
|
||||
|
||||
sendMultiple(Job: object): Promise<object>;
|
||||
|
||||
close(): Promise<void>;
|
||||
|
||||
initialize(): void;
|
||||
|
||||
serialize(): string;
|
||||
}
|
||||
Reference in New Issue
Block a user