Skip to content

Commit 2aa8108

Browse files
authored
Update README.md
1 parent 7980e1a commit 2aa8108

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,14 @@ seriously, check some of these out, they represent a ton of accumulated typescri
8686
- https://github.com/ikatyang/dts-jest
8787
- https://github.com/SamVerschueren/tsd
8888
- https://github.com/azz/jest-runner-tsc
89+
- https://github.com/dsherret/conditional-type-checks
90+
* `IsNullable<T>` - Checks if `T` is possibly `null` or `undefined`.
91+
* `IsExact<T, U>` - Checks if `T` exactly matches `U`.
92+
* `Has<T, U>` - Checks if `T` has `U`.
93+
* `NotHas<T, U>` - Checks if `T` does not have `U`.
94+
* `IsAny<T>` - Checks if `T` is the `any` type.
95+
* `IsNever<T>` - Checks if `T` is the `never` type.
96+
* `IsUnknown<T>` - Checks if `T` is the `unknown` type.
8997
- https://github.com/microsoft/dtslint ([Intro to dtslint](https://www.youtube.com/watch?v=nygcFEwOG8w&feature=share))
9098
9199
## TypeScript Plugins

0 commit comments

Comments
 (0)