export default VideoCallPlugin; declare class VideoCallPlugin extends JanusPlugin { constructor(display: any, logger: any, filterDirectCandidates?: boolean); display: any; pluginName: string; filterDirectCandidates: boolean; sdpHelper: SdpHelper; /** * registered user list */ onlineList(): any; register(): any; doCall(jsep: any, callId: any): any; doAnswer(jsep: any): any; /** * @see https://janus.conf.meetecho.com/docs/videocall.html * @param {Object} set * - "audio" : true|false, * - "video" : true|false, * - "bitrate" : , * - "record" : true|false, * - "filename" : , * - "substream" : , * - "temporal" : , * - "fallback" : */ configure(set: Object): any; } import JanusPlugin from '../JanusPlugin.js'; import SdpHelper from '../SdpHelper.js';