UNPKG

@jealous-robot-dev/shared-types-databases

Version:

18 lines (17 loc) 433 B
import { DataStandartModel } from "../common"; export interface UserProfileData { UID: string; username: string; firstname?: string; lastname?: string; email: string; profilePicUrl?: string; about?: string; emoji?: string; country?: string; city?: string; website?: string; twitterUsername?: string; } export interface DBMUserProfileData extends DataStandartModel, UserProfileData { }