You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: annotate constructor fields with @type to improve type coverage (#21265)
Add explicit JSDoc @type annotations to class field assignments across
lib/. At the first assignment site TypeScript widens the property to any
(circular inference), so these identifiers counted as uncovered even
though the field's resolved type is concrete. Annotating them with their
already-inferred type lifts type coverage from 97.94% to 98.19% without
changing the generated types.d.ts.
0 commit comments