@react-native-ohos/realm
Version:
Realm by MongoDB is an offline-first mobile database: an alternative to SQLite and key-value stores
44 lines (43 loc) • 821 B
TypeScript
export type DefaultUserProfileData = {
/**
* The commonly displayed name of the user.
*/
name?: string;
/**
* The users email address.
*/
email?: string;
/**
* A URL referencing a picture associated with the user.
*/
pictureUrl?: string;
/**
* The users first name.
*/
firstName?: string;
/**
* The users last name.
*/
lastName?: string;
/**
* The users gender.
*/
gender?: string;
/**
* The users birthday.
*/
birthday?: string;
/**
* The minimal age of the user.
*/
minAge?: string;
/**
* The maximal age of the user.
*/
maxAge?: string;
} & {
/**
* Authentication providers might store additional data here.
*/
[]: unknown;
};