Comparing version 0.0.0-20240816T000930 to 0.0.0-20240816T001506
@@ -0,7 +1,8 @@ | ||
import { InvalidBytesTypeError } from '../errors/data.js'; | ||
import type { ErrorType as ErrorType_ } from '../errors/error.js'; | ||
import type { Bytes } from '../types/data.js'; | ||
export declare namespace assertBytes { | ||
type ErrorType = ErrorType_; | ||
type ErrorType = InvalidBytesTypeError | ErrorType_; | ||
} | ||
export declare function assertBytes(value: unknown): asserts value is Bytes; | ||
//# sourceMappingURL=assert.d.ts.map |
@@ -0,1 +1,2 @@ | ||
import { InvalidHexTypeError, InvalidHexValueError } from '../errors/data.js'; | ||
import type { ErrorType as ErrorType_ } from '../errors/error.js'; | ||
@@ -7,5 +8,5 @@ import type { Hex } from '../types/data.js'; | ||
}; | ||
type ErrorType = ErrorType_; | ||
type ErrorType = InvalidHexTypeError | InvalidHexValueError | ErrorType_; | ||
} | ||
export declare function assertHex(value: unknown, options?: assertHex.Options): asserts value is Hex; | ||
//# sourceMappingURL=assert.d.ts.map |
@@ -1,2 +0,2 @@ | ||
export declare const version = "0.0.0-20240816T000930"; | ||
export declare const version = "0.0.0-20240816T001506"; | ||
//# sourceMappingURL=version.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.version = void 0; | ||
exports.version = '0.0.0-20240816T000930'; | ||
exports.version = '0.0.0-20240816T001506'; | ||
//# sourceMappingURL=version.js.map |
@@ -0,5 +1,6 @@ | ||
import { InvalidBytesTypeError } from '../errors/data.js'; | ||
import type { ErrorType as ErrorType_ } from '../errors/error.js'; | ||
import type { Bytes } from '../types/data.js'; | ||
export declare namespace assertBytes { | ||
type ErrorType = ErrorType_; | ||
type ErrorType = InvalidBytesTypeError | ErrorType_; | ||
} | ||
@@ -6,0 +7,0 @@ /** |
@@ -0,1 +1,2 @@ | ||
import { InvalidHexTypeError, InvalidHexValueError } from '../errors/data.js'; | ||
import type { ErrorType as ErrorType_ } from '../errors/error.js'; | ||
@@ -7,3 +8,3 @@ import type { Hex } from '../types/data.js'; | ||
}; | ||
type ErrorType = ErrorType_; | ||
type ErrorType = InvalidHexTypeError | InvalidHexValueError | ErrorType_; | ||
} | ||
@@ -10,0 +11,0 @@ /** |
/** @internal */ | ||
export declare const version = "0.0.0-20240816T000930"; | ||
export declare const version = "0.0.0-20240816T001506"; | ||
//# sourceMappingURL=version.d.ts.map |
/** @internal */ | ||
export const version = '0.0.0-20240816T000930'; | ||
export const version = '0.0.0-20240816T001506'; | ||
//# sourceMappingURL=version.js.map |
@@ -6,3 +6,3 @@ import { InvalidBytesTypeError } from '../errors/data.js' | ||
export declare namespace assertBytes { | ||
type ErrorType = ErrorType_ | ||
type ErrorType = InvalidBytesTypeError | ErrorType_ | ||
} | ||
@@ -9,0 +9,0 @@ |
@@ -10,3 +10,3 @@ import { InvalidHexTypeError, InvalidHexValueError } from '../errors/data.js' | ||
type ErrorType = ErrorType_ | ||
type ErrorType = InvalidHexTypeError | InvalidHexValueError | ErrorType_ | ||
} | ||
@@ -13,0 +13,0 @@ |
{ | ||
"name": "ox", | ||
"description": "Ethereum Standard Library", | ||
"version": "0.0.0-20240816T000930", | ||
"version": "0.0.0-20240816T001506", | ||
"main": "./_cjs/index.js", | ||
@@ -6,0 +6,0 @@ "module": "./_esm/index.js", |
/** @internal */ | ||
export const version = '0.0.0-20240816T000930' | ||
export const version = '0.0.0-20240816T001506' |
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
Sorry, the diff of this file is not supported yet
455622
7905