user.interface.d.ts 475 B

1234567891011121314151617
  1. import { JobTitleEnum } from '../../types';
  2. export interface IServicesHashes {
  3. intercom?: string;
  4. }
  5. export interface IUserEntity {
  6. _id: string;
  7. firstName?: string | null;
  8. lastName?: string | null;
  9. email?: string | null;
  10. profilePicture?: string | null;
  11. createdAt: string;
  12. showOnBoarding?: boolean;
  13. showOnBoardingTour?: number;
  14. servicesHashes?: IServicesHashes;
  15. jobTitle?: JobTitleEnum;
  16. }
  17. //# sourceMappingURL=user.interface.d.ts.map