diff --git a/src/lib/es5.d.ts b/src/lib/es5.d.ts index 33f1a983208f9..88dc82eaf1767 100644 --- a/src/lib/es5.d.ts +++ b/src/lib/es5.d.ts @@ -1597,6 +1597,11 @@ type Record = { */ type Exclude = T extends U ? never : T; +/** + * Any type but `null` or `undefined` + */ +type something = {}; + /** * Extract from T those types that are assignable to U */