typelevel-ts
Advanced tools
Comparing version 0.2.2 to 0.2.3
@@ -16,2 +16,7 @@ # Changelog | ||
# 0.2.3 | ||
* **New Feature** | ||
* add `HListConcat`, closes #17 (@tvald) | ||
# 0.2.2 | ||
@@ -18,0 +23,0 @@ |
@@ -189,2 +189,6 @@ export declare type Increment = { | ||
}[HListLengthAsString<L>]; | ||
export declare type HListConcat<L1 extends HList, L2 extends HList> = { | ||
T: L2; | ||
F: HCons<Head<L1>, HListConcat<Tail<L1>, L2>>; | ||
}[IsHNil<L1>]; | ||
export declare type TupleToObject<T> = ObjectOmit<T, keyof Array<any>>; | ||
@@ -191,0 +195,0 @@ export declare type TupleLengthAsString<T extends [any], I extends keyof Increment = '0'> = { |
{ | ||
"name": "typelevel-ts", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"description": "Type level programming in TypeScript", | ||
@@ -33,3 +33,3 @@ "files": ["lib"], | ||
"tslint-config-standard": "4.0.0", | ||
"typescript": "2.6.1", | ||
"typescript": "2.6.2", | ||
"typings-checker": "1.1.2" | ||
@@ -36,0 +36,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
13428
207