TP-89230 | universal call sdk

This commit is contained in:
varnit goyal
2024-11-02 12:17:50 +05:30
parent 3b9399e320
commit bc0641bf20
2 changed files with 1 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ import {
import registerEventProcessor from "./eventsProcessor.ts";
class AmeyoAdapter implements IAdapter {
private callbacks: { onCallConnected: (data: GenericObject) => void; onCallDisconnected: (data: GenericObject) => void; onCallIncoming: (data: GenericObject) => void };
private callbacks: { onCallConnected: (data: StateType) => void; onCallDisconnected: (data: StateType) => void; onCallIncoming: (data: StateType) => void };
private eventListenerUrl: string;
private baseUrl: string;
private sessionId: string;

View File

@@ -1,5 +1,3 @@
import exp from "constants";
export type GenericObject = {
[key: string]: any;
};