export interface AuthedUser { /** * The email address of the authenticated user. */ email?: string; /** * The ID of the authenticated user. */ id?: string; /** * The username of the authenticated user. */ username?: string; }