Projekt

Obecné

Profil

Stáhnout (314 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 2c5da396 hlavja
/* tslint:disable */
2
/* eslint-disable */
3
import {UserInfo} from '../../shared/api/endpoints/models/user-info';
4 87c1bdd1 hlavja
import {UserCookie} from '../../shared/api/endpoints/models/user-cookie';
5 2c5da396 hlavja
6 cbb91c90 hlavja
/**
7
 * User state model
8
 */
9 2c5da396 hlavja
export interface User {
10
  userInfo?: UserInfo;
11
  isLoggedIn?: boolean;
12 87c1bdd1 hlavja
  userCookie?: UserCookie
13 2c5da396 hlavja
}