18 lines
294 B
TypeScript
18 lines
294 B
TypeScript
export interface UserInfo {
|
|
did: string;
|
|
name: string;
|
|
publicEncKey: string;
|
|
registered: boolean;
|
|
profileImageUrl?: string;
|
|
nextPublicEncKeyHash?: string;
|
|
}
|
|
|
|
export interface MemberData {
|
|
did: string;
|
|
name: string;
|
|
isContact: boolean;
|
|
member: {
|
|
memberId: string;
|
|
};
|
|
}
|