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
22 lines (18 loc) • 416 B
text/typescript
export type CreateResponse =
| UsernamePasswordCreateResponse
| PassKeyCreateResponse
| CreateErrorResponse;
export interface CreateErrorResponse {
name: "Error";
type: string;
message: string;
}
export interface UsernamePasswordCreateResponse {
name: "UsernamePassword";
username: string;
password: string;
}
export interface PassKeyCreateResponse {
name: "PassKey";
requestJSON: string;
}