All basic TypeScript types in one place 🤙
-
Updated
Jun 8, 2021 - TypeScript
Add a description, image, and links to the type-level-programming topic page so that developers can more easily learn about it.
To associate your repository with the type-level-programming topic, visit your repo's landing page and select "manage topics."
Here's a
.avdlfile with a deliberate typo.@namespace("integrationtest") protocol WeatherService { record GetForecastRequest { // NOTE: missing semicolon string city int days_required; } enum Weather { SUNNY, CLOUDY, RAINY } record GetForecastResponse { string last_updated; array<Weather> daily_forecasts; } void