react-sip-kit
Version:
A modern **React SIP.js toolkit** for building web softphones and SIP clients. Supports **audio/video calls**, **call recording**, **screen sharing**, and **device management**, all with a clean, extensible, TypeScript-first architecture.
5 lines (4 loc) • 434 B
TypeScript
import { SipAccountConfig } from '../../configs/types';
export declare function register(username: SipAccountConfig['username'], userAgent?: import("../..").SipUserAgent | null): void;
export declare function unregister(username: SipAccountConfig['username'], skipUnsubscribe?: boolean, userAgent?: import("../..").SipUserAgent | null): void;
export declare function refreshRegistration(username: SipAccountConfig['username']): void;