0.2.1 - Literal types
Add support for Literal types under Scala 2.13
Example:
case class DeepThought(
query: "The Answer to Life, the Universe and Everything",
answer: 42,
question: None.type
)
will output:
export interface IDeepThought {
query: "The Answer to Life, the Universe and Everything"
answer: 42
question: null
}