@adobe/react-native-aepuserprofile
Version:
Adobe Experience Platform support for React Native apps.
9 lines (8 loc) • 367 B
TypeScript
interface IUserProfile {
extensionVersion: () => Promise<string>;
removeUserAttributes: (attributeNames: Array<string>) => void;
getUserAttributes: (attributeNames: Array<string>) => Promise<Record<string, any>>;
updateUserAttributes: (attributeMap: Record<string, any>) => void;
}
declare const UserProfile: IUserProfile;
export default UserProfile;