/** * Minimal public identity of a user (issue #150): what the instance-wide * mention search and the mention rendering expose — never more than id, * username, and display name. */ export interface UserBriefView { id: string; username: string; displayName: string; }