type UserId = string; type Point = { x: number; y: number; }; type Status = "active" | "inactive" | "banned"; const id: UserId = "user_123"; const origin: Point = { x: 0, y: 0 }; const status: Status = "active";