/** * Output for a single user inside a WatchedGroup. * * The entity is the user — `id` is the user's id (matching the URL pk). The * underlying `UserGroupLink.id` is a routing artifact and isn't surfaced. */ export type WatchedUserRead = { readonly id: number; readonly username: string; readonly email: string; };