Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/lib/es5.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1597,6 +1597,11 @@
*/
type Exclude<T, U> = T extends U ? never : T;

/**
* Any type but `null` or `undefined`
*/
type something = {};

Check failure on line 1603 in src/lib/es5.d.ts

View workflow job for this annotation

GitHub Actions / lint

Use an `interface` instead of a `type`

/**
* Extract from T those types that are assignable to U
*/
Expand Down
Loading