2025SELab2-project-Dwengo/backend/src/middleware/auth/authentication-info.d.ts

11 lines
266 B
TypeScript

/**
* Object with information about the user who is currently logged in.
*/
export interface AuthenticationInfo {
accountType: 'student' | 'teacher';
username: string;
name?: string;
firstName?: string;
lastName?: string;
email?: string;
}