UNPKG

android-credential-manager

Version:

An expo module to access the new Android credential Manager. Supports username/password, Passkeys and Google Sign In. This module is built to use the suggested and latest way to sign in users through Google

10 lines 440 B
import { NativeModule } from "expo"; declare class CredentialManagerModule extends NativeModule { saveUsernameAndPassword(username: string, password: string): string; createPassKey(response: string): string; _login(logintypes: string): string; prefetchCredentials(loginProviders: string): void; } declare const _default: CredentialManagerModule; export default _default; //# sourceMappingURL=CredentialManagerModule.d.ts.map