Web
import {
Invitation,
InvitationAcceptOptions,
Inviter,
InviterInviteOptions,
Registerer,
Session,
SessionState,
UserAgent,
UserAgentOptions,
Web
} from "sip.js";
import {IncomingResponse} from "sip.js/lib/core";
userAgent: UserAgent;
// register to manage extension login and logout operations.
registerer: Registerer;
// incomingInvitation to manage events related to incoming calls
incomingInvitation: Invitation;
// outgoingInviter to manage events related to outgoing calls
outgoingInviter: Inviter;
// When any call takes place, a session is created, this variable is used to track the status of the call until the call ends.
session: Session;Last updated