tsdjs / tsd

Check TypeScript type definitions
MIT License
2.36k stars 68 forks source link

`printType` does not print anything #171

Closed RobinTail closed 1 year ago

RobinTail commented 1 year ago

Could you help me to figure out how properly to use this method? Since in my case the following line does not print anything:

printType(123)

Should it write to console or which behavior is intended? Thank you

tommy-mitchell commented 1 year ago

printType reports the type of an expression to the console when running tsd (e.g. npx tsd)

RobinTail commented 1 year ago

thank you