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 }
Description: Type declaration keyword. Used to define custom types and type aliases.
type UserId = Int
type Status = Active | Inactive
type User = { name: String, age: Int }