Add some call states

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-06-01 10:06:03 +02:00
parent 86402e9788
commit 6b72c13e34
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,11 @@ import { EventEmitter } from 'events';
export enum CallEventGrouperState {
Incoming = "incoming",
Connecting = "connecting",
Connected = "connected",
Ringing = "ringing",
Missed = "missed",
Rejected = "rejected",
Ended = "ended",
}