File

src/app/auth/models/auth.ts

Index

Properties

Properties

access_token
access_token: string
Type : string
expires_in
expires_in: number
Type : number
iat
iat: number
Type : number
iss
iss: string
Type : string
jti
jti: string
Type : string
token_type
token_type: string
Type : string
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 ""