UNPKG

mongodb-stitch

Version:

[![Join the chat at https://gitter.im/mongodb/stitch](https://badges.gitter.im/mongodb/stitch.svg)](https://gitter.im/mongodb/stitch?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

23 lines (22 loc) 864 B
import StitchUserIdentity from "../StitchUserIdentity"; import IStitchUserProfile from "../StitchUserProfile"; export default class StitchUserProfileImpl implements IStitchUserProfile { static empty(): StitchUserProfileImpl; readonly userType?: string; readonly data: { [key: string]: string; }; readonly identities: StitchUserIdentity[]; constructor(userType?: string, data?: { [key: string]: string; }, identities?: StitchUserIdentity[]); readonly name: string | undefined; readonly email: string | undefined; readonly pictureUrl: string | undefined; readonly firstName: string | undefined; readonly lastName: string | undefined; readonly gender: string | undefined; readonly birthday: string | undefined; readonly minAge: string | undefined; readonly maxAge: string | undefined; }