Releases: andnp/SimplyTyped
Releases · andnp/SimplyTyped
v3.3.0
v3.2.3
v3.2.2
v3.2.1
v3.2.0
v3.1.0
v3.0.0
v2.0.0
2.0.0 (2019-03-12)
Bug Fixes
- base case should be never (fce8fa5)
- head off breaking change in ts@next (7305279)
- increase minimum supported ts version to 3.0 (8d13ae2)
chore
- kill Keys in favor of keyof T (c8daf48)
Features
- drop
Diff
in favor ofExclude
(7b783bc) - drop custom
Unknown
type (65c067f) - use varargs types instead of overloads (a2c1162)
BREAKING CHANGES
- No longer exporting Keys either. This alias is too
opinionated stylistically and doesn't support good TS practices. If
using it, it would be best to include in a per-project basis. Besides,
it isn't difficult to write or come up with (type Keys<T> = keyof T;
),
so is outside the scope of this project. Unknown
is no longer supported. Can find and replace
all instances ofUnknown
withunknown
to maintain same behavior.Diff
is no longer exported from simplytyped. Can find
and replaceDiff
forExclude
to maintain same functionality.- typescript < 3.0 will no longer be supported. To
continue using simplytyped with typescript < 3, you will need to use
[email protected].