export interface PhoneCallPlugin { call(options: CallOptions): Promise; } export interface CallOptions { phone: string; }