inferred-types
Advanced tools
Comparing version 0.24.0 to 0.24.1
{ | ||
"name": "inferred-types", | ||
"version": "0.24.0", | ||
"version": "0.24.1", | ||
"description": "Functions which provide useful type inference on TS projects", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -97,3 +97,3 @@ import { Alpha } from "../alphabetic/alpha-characters"; | ||
*/ | ||
export type OptionalProps<T extends object> = Pick<T, RequiredKeys<T>>; | ||
export type OptionalProps<T extends object> = Pick<T, OptionalKeys<T>>; | ||
@@ -100,0 +100,0 @@ /** |
Sorry, the diff of this file is too big to display