react-native-twilio-voice-sdk-upgrade
Version:
React Native wrapper for Twilio Programmable Voice SDK
16 lines (15 loc) • 398 B
TypeScript
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;