Closed miguel-nascimento closed 9 months ago
This PR adds proper support for literal type
type Input = { kind: "get-config" } type Input = { digit: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 }`
union type
type Input = { kind: "get-config" | "generate-stuff" }
array of union types
type Input = { scopes: 'view:page' | 'edit:page' | 'create:page' }
The latest updates on your projects. Learn more about Vercel for Git ↗︎
This PR adds proper support for literal type
union type
array of union types