UNPKG

@brahmaesolutions/native

Version:
13 lines (12 loc) 360 B
import { WebPlugin } from '@capacitor/core'; import type { CustomPlugin } from './definitions'; export declare class ContactsPluginWeb extends WebPlugin implements CustomPlugin { echo(options: { value: string; }): Promise<{ value: string; }>; getContacts(filter: string): Promise<{ results: any[]; }>; }