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.
12 lines (11 loc) • 425 B
TypeScript
import { SipAccountConfig } from '../configs/types';
import { LineType, SipInvitationType } from '../store/types';
export declare class Line implements LineType {
lineKey: number;
remoteNumber: string;
username: string;
sipSession: SipInvitationType | null;
localSoundMeter: any;
remoteSoundMeter: any;
constructor(username: SipAccountConfig['username'], lineKey: number, remoteNumber: string);
}