UNPKG

@codetrix-studio/capacitor-google-auth

Version:
13 lines (12 loc) 244 B
declare module "@capacitor/core" { interface PluginRegistry { GoogleAuth: GoogleAuthPlugin; } } export interface GoogleAuthPlugin { signIn(options: { value: string; }): Promise<{ value: string; }>; }