File

src/app/auth/models/auth.ts

Index

Properties

Properties

token
token: string
Type : string
user
user: User
Type : User
import { User } from './user';

export interface AuthResponse {
  access_token: string;
  expires_in: number;
  iat: number;
  iss: string;
  jti: string;
  token_type: string;
}

export interface AuthData {
  token: string;
  user: User;
}

result-matching ""

    No results matching ""