Description: Type declaration keyword. Used to define custom types and type aliases.

Example #

type UserId = Int
type Status = Active | Inactive
type User = { name: String, age: Int }