@waiting/shared-types
Advanced tools
Comparing version 4.7.1 to 4.8.0
@@ -6,2 +6,14 @@ # Change Log | ||
# [4.8.0](https://github.com/waitingsong/shared-types/compare/v4.7.1...v4.8.0) (2020-07-14) | ||
### Features | ||
* **types:** add type JoinTableWithAlias ([b05e312](https://github.com/waitingsong/shared-types/commit/b05e312cf8afd3a389244fe14dfb9217c115a2cf)) | ||
* **types:** update type FormatIntersect deeply ([b24f097](https://github.com/waitingsong/shared-types/commit/b24f097d44ba0a195bc78a86f1851a1dc4d41499)) | ||
## [4.7.1](https://github.com/waitingsong/shared-types/compare/v4.7.0...v4.7.1) (2020-07-13) | ||
@@ -8,0 +20,0 @@ |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* @version 4.7.0 | ||
* @version 4.7.1 | ||
* @author waiting | ||
@@ -8,0 +8,0 @@ * @license MIT |
@@ -87,3 +87,3 @@ /** | ||
/** | ||
* (Experimental) Rewrite members of intersect type into one type | ||
* (Experimental) Rewrite members of intersect type into one type deeply | ||
* | ||
@@ -94,5 +94,5 @@ * @example ```ts | ||
*/ | ||
export declare type FormatIntersect<T> = T extends Record<string | number, any> ? T extends any[] | Function ? T : { | ||
[K in keyof T]: T[K]; | ||
export declare type FormatIntersect<T> = T extends Record<string | number, any> ? T extends any[] | Function | Date ? T : { | ||
[K in keyof T]: FormatIntersect<T[K]>; | ||
} : T; | ||
export {}; |
@@ -7,2 +7,3 @@ export * from './alias'; | ||
export * from './tuple'; | ||
export * from './database'; | ||
export * from './database/common'; | ||
export * from './database/join'; |
@@ -7,2 +7,3 @@ export * from './alias'; | ||
export * from './tuple'; | ||
export * from './database'; | ||
export * from './database/common'; | ||
export * from './database/join'; |
{ | ||
"name": "@waiting/shared-types", | ||
"author": "waiting", | ||
"version": "4.7.1", | ||
"version": "4.8.0", | ||
"description": "shared typescript types", | ||
@@ -74,3 +74,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "cea9eed10e577ff0b3684421dcc48b417899aa9b" | ||
"gitHead": "7976181f89893dde4fea10b54ddd48571d851c66" | ||
} |
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
37254
29
818