File

src/app/interfaces/user.ts

Index

Properties

Properties

createdAt
createdAt: string
Type : string
deletedAt
deletedAt: null | string
Type : null | string
email
email: string
Type : string
id
id: number
Type : number
nom
nom: string
Type : string
password
password: string
Type : string
prenom
prenom: string
Type : string
updatedAt
updatedAt: string
Type : string
username
username: string
Type : string
export interface IUser {
  username: string;
  id: number;
  nom: string;
  prenom: string;
  email: string;
  password: string;
  createdAt: string;
  updatedAt: string;
  deletedAt: null | string;
}

export interface ISingleUser {
  data: IUser;
}

export interface IDataUser {
  data: IUser[];
}

export interface ITokenUser {
  id: number;
  nom: string;
  prenom: string;
  email: string;
  iap?: number;
  exp?: number;
}

results matching ""

    No results matching ""