@hazae41/binary
Advanced tools
Comparing version 1.2.26 to 1.2.27
@@ -5,3 +5,3 @@ import * as index from './mods/index.js'; | ||
export { Opaque, SafeOpaque, UnsafeOpaque } from './mods/binary/opaque.js'; | ||
export { BinaryReadUnderflowError, Readable } from './mods/binary/readable.js'; | ||
export { BinaryWriteUnderflowError, Writable } from './mods/binary/writable.js'; | ||
export { BinaryReadError, BinaryReadUnderflowError, Readable } from './mods/binary/readable.js'; | ||
export { BinaryWriteError, BinaryWriteUnderflowError, Writable } from './mods/binary/writable.js'; |
import { Bytes } from '@hazae41/bytes'; | ||
import { Cursor } from '@hazae41/cursor'; | ||
import { CursorReadError, Cursor } from '@hazae41/cursor'; | ||
import { Result } from '@hazae41/result'; | ||
type BinaryReadError = BinaryReadUnderflowError | CursorReadError; | ||
declare class BinaryReadUnderflowError extends Error { | ||
@@ -43,2 +44,2 @@ #private; | ||
export { BinaryReadUnderflowError, Readable }; | ||
export { BinaryReadError, BinaryReadUnderflowError, Readable }; |
import { Bytes } from '@hazae41/bytes'; | ||
import { Cursor } from '@hazae41/cursor'; | ||
import { CursorWriteError, Cursor } from '@hazae41/cursor'; | ||
import { Result } from '@hazae41/result'; | ||
type BinaryWriteError = BinaryWriteUnderflowError | CursorWriteError; | ||
declare class BinaryWriteUnderflowError extends Error { | ||
@@ -37,2 +38,2 @@ #private; | ||
export { BinaryWriteUnderflowError, Writable }; | ||
export { BinaryWriteError, BinaryWriteUnderflowError, Writable }; |
export { Empty } from './binary/empty.js'; | ||
export { Opaque, SafeOpaque, UnsafeOpaque } from './binary/opaque.js'; | ||
export { BinaryReadUnderflowError, Readable } from './binary/readable.js'; | ||
export { BinaryWriteUnderflowError, Writable } from './binary/writable.js'; | ||
export { BinaryReadError, BinaryReadUnderflowError, Readable } from './binary/readable.js'; | ||
export { BinaryWriteError, BinaryWriteUnderflowError, Writable } from './binary/writable.js'; |
{ | ||
"type": "module", | ||
"name": "@hazae41/binary", | ||
"version": "1.2.26", | ||
"version": "1.2.27", | ||
"description": "Zero-copy binary data types", | ||
@@ -25,14 +25,14 @@ "homepage": "https://github.com/hazae41/binary", | ||
"dependencies": { | ||
"@hazae41/bytes": "^1.1.7", | ||
"@hazae41/cursor": "^1.1.9", | ||
"@hazae41/result": "^1.0.19" | ||
"@hazae41/bytes": "^1.1.8", | ||
"@hazae41/cursor": "^1.1.13", | ||
"@hazae41/result": "^1.0.21" | ||
}, | ||
"devDependencies": { | ||
"@hazae41/phobos": "^1.0.10", | ||
"@rollup/plugin-typescript": "^11.1.0", | ||
"@types/node": "^20.1.1", | ||
"rimraf": "^5.0.0", | ||
"rollup": "^3.21.5", | ||
"@rollup/plugin-typescript": "^11.1.1", | ||
"@types/node": "^20.2.1", | ||
"rimraf": "^5.0.1", | ||
"rollup": "^3.22.0", | ||
"rollup-plugin-dts": "^5.3.0", | ||
"rollup-plugin-node-externals": "^6.0.0", | ||
"rollup-plugin-node-externals": "^6.0.1", | ||
"typescript": "^5.0.4" | ||
@@ -39,0 +39,0 @@ }, |
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
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
46518
579
Updated@hazae41/bytes@^1.1.8
Updated@hazae41/cursor@^1.1.13
Updated@hazae41/result@^1.0.21