Comparing version 2.1.5 to 2.1.6
@@ -6,2 +6,13 @@ # Change Log | ||
## [2.1.6](https://github.com/bluelovers/ws-ts-type/compare/ts-type@2.1.5...ts-type@2.1.6) (2022-03-12) | ||
### 📦 Code Refactoring | ||
* { ITSToArray => ITSToWriteableAArray } ([adda840](https://github.com/bluelovers/ws-ts-type/commit/adda8403d79c7153e7de71774bce868b318af5af)) | ||
## [2.1.5](https://github.com/bluelovers/ws-ts-type/compare/ts-type@2.1.4...ts-type@2.1.5) (2022-02-26) | ||
@@ -8,0 +19,0 @@ |
import { ITSArrayListMaybeReadonly } from '../../type/base'; | ||
export declare type ITSToReadonlyArray<T extends ITSArrayListMaybeReadonly<any>> = T extends [...infer R] | readonly [...infer R] ? readonly [...R] : never; | ||
export declare type ITSToArray<T extends ITSArrayListMaybeReadonly<any>> = T extends [...infer R] | readonly [...infer R] ? [...R] : never; | ||
export declare type ITSToWriteableAArray<T extends ITSArrayListMaybeReadonly<any>> = T extends [...infer R] | readonly [...infer R] ? [...R] : never; |
{ | ||
"name": "ts-type", | ||
"version": "2.1.5", | ||
"version": "2.1.6", | ||
"description": "add some typescript type and re-export some build-in typescript type", | ||
@@ -67,3 +67,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "e8c949105b230b7b3a956d1c0c8f35e21e9c150a" | ||
"gitHead": "11afbe4cfea994ee940a8fca76d4719742a58e02" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
266707