UNPKG

react-native-twilio-voice-sdk-upgrade

Version:
16 lines (15 loc) 398 B
export declare type nativeCallBase = { sid?: string; to?: string; from?: string; }; declare abstract class AbstractCall { private _to; private _from; private _sid; get to(): string | undefined; get from(): string | undefined; get sid(): string | undefined; protected updateFromNativeCallObject: (call: nativeCallBase) => void; } export default AbstractCall;