@passageidentity/passage-react-native
Version:
Passkey Complete for React Native - Go completely passwordless with a standalone auth solution in your React Native app with Passage by 1Password
19 lines (16 loc) • 377 B
text/typescript
export enum UserSocialConnectionType {
apple = 'apple',
github = 'github',
google = 'google',
}
export type UserSocialConnection = {
providerId: string;
createdAt: Date;
lastLoginAt: Date;
providerIdentifier: string;
};
export interface UserSocialConnections {
apple?: UserSocialConnection;
github?: UserSocialConnection;
google?: UserSocialConnection;
}