typelevel-ts
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -15,1 +15,6 @@ # Changelog | ||
# 0.1.1 | ||
- **New Feature** | ||
- `PickExact` (@gcanti) | ||
- `ObjectExact` (@gcanti) |
@@ -134,1 +134,5 @@ export declare type Bool = 'true' | 'false'; | ||
export declare type ObjectClean<T> = Pick<T, keyof T>; | ||
export declare type PickExact<O, K extends keyof O> = Pick<O, K> & { | ||
[K1 in StringOmit<keyof O, K>]?: never; | ||
}; | ||
export declare type ObjectExact<O> = PickExact<O, keyof O>; |
{ | ||
"name": "typelevel-ts", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Type level programming in TypeScript", | ||
@@ -5,0 +5,0 @@ "files": ["lib"], |
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
10254
142