zcash-grant-system/frontend/types/user.ts

12 lines
278 B
TypeScript
Raw Normal View History

import { SocialMedia } from 'types';
2018-10-04 21:27:02 -07:00
export interface User {
userid: number;
2018-10-04 21:27:02 -07:00
accountAddress: string;
emailAddress: string; // TODO: Split into full user type
displayName: string;
2018-10-04 21:27:02 -07:00
title: string;
socialMedias: SocialMedia[];
avatar: { image_url: string } | null;
2018-10-04 21:27:02 -07:00
}