Patch Changes
-
#2428
a31917a
Thanks @gcanti! - exportnull
from the AST module -
#2436
4cd2bed
Thanks @patroza! - fix: Schema JSDOC and editor click-follow for fields on struct and class -
#2442
6cc6267
Thanks @gcanti! - Enums are now exposed under anenums
property of the schema, closes #2441:enum Fruits { Apple, Banana, } // $ExpectType enums<typeof Fruits> S.enums(Fruits); // $ExpectType typeof Fruits S.enums(Fruits).enums; // $ExpectType Fruits.Apple S.enums(Fruits).enums.Apple; // $ExpectType Fruits.Banana S.enums(Fruits).enums.Banana;