mirror of
https://dev.azure.com/globalhealthx/EMR/_git/helix-engage
synced 2026-04-11 18:28:15 +00:00
12 lines
338 B
TypeScript
12 lines
338 B
TypeScript
export type SIPConfig = {
|
|
displayName: string;
|
|
uri: string;
|
|
password: string;
|
|
wsServer: string;
|
|
stunServers: string;
|
|
};
|
|
|
|
export type ConnectionStatus = 'disconnected' | 'connecting' | 'connected' | 'registered' | 'error';
|
|
|
|
export type CallState = 'idle' | 'ringing-in' | 'ringing-out' | 'active' | 'ended' | 'failed';
|