user.interface.ts 121 Bytes
Newer Older
1 2 3 4 5 6 7
export interface User {
  _id: string;
  fullname: string;
  createdAt: string;
  roles: string[];
  isAdmin: boolean;
}