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

11 lines
252 B
TypeScript
Raw Normal View History

import { SocialMedia } from 'types';
2018-10-04 21:27:02 -07:00
export interface User {
userid: number;
2018-12-14 11:36:22 -08:00
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
}