Typescript type visitor
It's a function that takes a ts.TypeChecker
and a ts.Type
and traverses the type building easy-to-use TypeModel
...
It's different from Typescript compiler API built-in model by the next properties
- It has a
kind
field (string
,number
,object
) which is string literal union so it allows you to do exhaustive checks - It simplifies the API itself, there's no methods, flags and this kind of stuff, only
kind
and additional data - It has a built-in special types,
array
andtuple
namely, that is kinda tricky to detect using vanilla compiler API
Basically you want to use it along with a compiler API, just using it for the ts.Type
, and using Typescript compiler API for everything else, e.g. emitting new code, analyzing AST etc.
Installation
npm i -D ts-type-visitor# or yarn add --dev ts-type-visitor