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
16 lines • 471 B
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;
}
//# sourceMappingURL=CreateResponse.types.d.ts.map