Generify smppSession

This commit is contained in:
David Majdandžić
2023-03-29 18:25:57 +02:00
parent d683ab870b
commit 330051382e
7 changed files with 215 additions and 297 deletions

View File

@@ -0,0 +1,5 @@
export interface PduProcessor {
processPdu(session: any, pdu: any, ...args: any[]): Promise<any>;
serialize(): object;
}