typelevel-ts
Advanced tools
Comparing version 0.2.0 to 0.2.1
@@ -15,2 +15,7 @@ # Changelog | ||
# 0.2.1 | ||
- **New Feature** | ||
- add `ObjectOptional`, closes #13 (@thepheer) | ||
# 0.2.0 | ||
@@ -17,0 +22,0 @@ |
@@ -137,2 +137,3 @@ export declare type Increment = { | ||
export declare type ObjectClean<T> = Pick<T, keyof T>; | ||
export declare type ObjectOptional<O, K extends keyof O> = ObjectOmit<O, K> & Partial<Pick<O, K>>; | ||
export declare type PickExact<O, K extends keyof O> = Pick<O, K> & { | ||
@@ -139,0 +140,0 @@ [K1 in StringOmit<keyof O, K>]?: never; |
{ | ||
"name": "typelevel-ts", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "Type level programming in TypeScript", | ||
@@ -31,3 +31,3 @@ "files": ["lib"], | ||
"tslint-config-standard": "4.0.0", | ||
"typescript": "^2.5.2", | ||
"typescript": "2.6.0-rc", | ||
"typings-checker": "1.1.2" | ||
@@ -34,0 +34,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
12901
196
0