Comparing version 0.9.7 to 0.9.8
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.version = void 0; | ||
exports.version = '0.9.7'; | ||
exports.version = '0.9.8'; | ||
//# sourceMappingURL=version.js.map |
@@ -1,2 +0,2 @@ | ||
export const version = '0.9.7'; | ||
export const version = '0.9.8'; | ||
//# sourceMappingURL=version.js.map |
@@ -10,3 +10,3 @@ /** | ||
*/ | ||
export type Narrow<TType> = (TType extends Function ? TType : never) | (TType extends string | number | boolean | bigint ? TType : never) | (TType extends [] ? [] : never) | { | ||
export type Narrow<TType> = (unknown extends TType ? unknown : never) | (TType extends Function ? TType : never) | (TType extends bigint | boolean | number | string ? TType : never) | (TType extends [] ? [] : never) | { | ||
[K in keyof TType]: Narrow<TType[K]>; | ||
@@ -13,0 +13,0 @@ }; |
@@ -1,2 +0,2 @@ | ||
export declare const version = "0.9.7"; | ||
export declare const version = "0.9.8"; | ||
//# sourceMappingURL=version.d.ts.map |
{ | ||
"name": "abitype", | ||
"description": "Strict TypeScript types for Ethereum ABIs", | ||
"version": "0.9.7", | ||
"version": "0.9.8", | ||
"license": "MIT", | ||
@@ -6,0 +6,0 @@ "repository": "wagmi-dev/abitype", |
@@ -12,8 +12,7 @@ /** | ||
export type Narrow<TType> = | ||
| (unknown extends TType ? unknown : never) | ||
| (TType extends Function ? TType : never) | ||
| (TType extends string | number | boolean | bigint ? TType : never) | ||
| (TType extends bigint | boolean | number | string ? TType : never) | ||
| (TType extends [] ? [] : never) | ||
| { | ||
[K in keyof TType]: Narrow<TType[K]> | ||
} | ||
| { [K in keyof TType]: Narrow<TType[K]> } | ||
@@ -20,0 +19,0 @@ /** |
@@ -1,1 +0,1 @@ | ||
export const version = '0.9.7' | ||
export const version = '0.9.8' |
Sorry, the diff of this file is not supported yet
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
1171205
24134