From a8c31f0e2af60aac5c97a21ee9fdd2e2cb20e856 Mon Sep 17 00:00:00 2001 From: Shinpei Date: Tue, 3 Dec 2019 17:23:37 +0900 Subject: [PATCH] Fix: wrong generic type of Omit --- lib/lib.es5.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lib.es5.d.ts b/lib/lib.es5.d.ts index a9b9f5b0aea2a..ad2dea1f6fdd5 100644 --- a/lib/lib.es5.d.ts +++ b/lib/lib.es5.d.ts @@ -1483,7 +1483,7 @@ type Extract = T extends U ? T : never; /** * Construct a type with the properties of T except for those in type K. */ -type Omit = Pick>; +type Omit = Pick>; /** * Exclude null and undefined from T