Add some call states

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Š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

View file

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