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