Skip to content

Commit bb9016c

Browse files
authored
Add something
1 parent 529ed09 commit bb9016c

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/lib/es5.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1597,6 +1597,11 @@ type Record<K extends keyof any, T> = {
15971597
*/
15981598
type Exclude<T, U> = T extends U ? never : T;
15991599

1600+
/**
1601+
* Any type but `null` or `undefined`
1602+
*/
1603+
type Something = {};
1604+
16001605
/**
16011606
* Extract from T those types that are assignable to U
16021607
*/

0 commit comments

Comments
 (0)