Full-featured SIP router with multi-provider trunking, browser softphone via WebRTC, real-time Opus/G.722/PCM transcoding in Rust, RNNoise ML noise suppression, Kokoro neural TTS announcements, and a Lit-based web dashboard with live call monitoring and REST API.
12 lines
382 B
TypeScript
12 lines
382 B
TypeScript
// Views
|
|
export * from './sipproxy-app.js';
|
|
export * from './sipproxy-view-overview.js';
|
|
export * from './sipproxy-view-calls.js';
|
|
export * from './sipproxy-view-phone.js';
|
|
export * from './sipproxy-view-contacts.js';
|
|
export * from './sipproxy-view-providers.js';
|
|
export * from './sipproxy-view-log.js';
|
|
|
|
// Sub-components (used within views)
|
|
export * from './sipproxy-devices.js';
|