Comparing version 0.1.26 to 0.1.27
@@ -1,3 +0,10 @@ | ||
export type IsEqual<TA, TB> = [TA, TB] extends [TB, TA] ? true : false; | ||
export type IsEqual<TA, TB> = [TA, TB, keyof TA, keyof TB] extends [ | ||
TB, | ||
TA, | ||
keyof TB, | ||
keyof TA, | ||
] | ||
? true | ||
: false; | ||
export type IsCompatible<T, TComparison> = T extends TComparison ? true : false; |
{ | ||
"name": "tslang", | ||
"version": "0.1.26", | ||
"version": "0.1.27", | ||
"description": "TypeScript Language Type Utilities.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
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
13469
370