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

12 lines
277 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[];
2018-11-26 17:14:00 -08:00
avatar: { imageUrl: string } | null;
2018-10-04 21:27:02 -07:00
}