UNPKG

@sawport/peers-caller

Version:

WebRTC multi-peer video call library with mesh architecture supporting up to 4 participants

19 lines 720 B
/** * PeersCaller - WebRTC multi-peer video call library * * A TypeScript-first, Vite-powered WebRTC library designed for multi-peer * mesh video calls supporting up to 4 participants. */ import "./polyfills"; export { PeersCaller } from "./core/PeersCaller"; export { CallSocket } from "./core/CallSocket"; export { CallMediaStream } from "./core/CallMediaStream"; export { CallPeerConnection } from "./core/CallPeerConnection"; export { CallParticipant } from "./core/CallParticipant"; export { CallRecorder } from "./core/CallRecorder"; export { useCallStore } from "./store"; export * from "./hooks"; export * from "./types"; export * from "./utils"; export * from "./store"; //# sourceMappingURL=index.d.ts.map