UNPKG

@webdisrupt/persona

Version:

Store local data in a secure data vault.

15 lines (14 loc) 304 B
export interface profile { avatar?: string; firstName?: string; lastName?: string; phone?: string; email?: string; age?: Date; gender?: string; attributes?: Array<profileAttribute>; } export interface profileAttribute { key: string; value: string; }