@thi.ng/rle-pack 3.1.82 → 3.1.83

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-11-10T17:11:51Z
3
+ - **Last updated**: 2024-11-24T18:15:48Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/index.d.ts CHANGED
@@ -8,6 +8,6 @@ export type RLESizes = [number, number, number, number];
8
8
  * @param wordSize - in bits, range 1 - 32
9
9
  * @param rleSizes - run-length group sizes (in bits, max. 16)
10
10
  */
11
- export declare const encode: (src: Iterable<number>, num: number, wordSize?: number, rleSizes?: RLESizes) => Uint8Array;
12
- export declare const decode: (src: Uint8Array) => Uint8Array | Uint32Array | Uint16Array;
11
+ export declare const encode: (src: Iterable<number>, num: number, wordSize?: number, rleSizes?: RLESizes) => Uint8Array<ArrayBuffer>;
12
+ export declare const decode: (src: Uint8Array) => Uint8Array<ArrayBuffer> | Uint16Array<ArrayBuffer> | Uint32Array<ArrayBuffer>;
13
13
  //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rle-pack",
3
- "version": "3.1.82",
3
+ "version": "3.1.83",
4
4
  "description": "Binary run-length encoding packer w/ flexible repeat bit widths",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,14 +36,14 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/bitstream": "^2.4.4",
40
- "@thi.ng/errors": "^2.5.18"
39
+ "@thi.ng/bitstream": "^2.4.5",
40
+ "@thi.ng/errors": "^2.5.19"
41
41
  },
42
42
  "devDependencies": {
43
- "@microsoft/api-extractor": "^7.47.9",
43
+ "@microsoft/api-extractor": "^7.48.0",
44
44
  "esbuild": "^0.24.0",
45
- "typedoc": "^0.26.7",
46
- "typescript": "^5.6.2"
45
+ "typedoc": "^0.26.11",
46
+ "typescript": "^5.7.2"
47
47
  },
48
48
  "keywords": [
49
49
  "array",
@@ -78,5 +78,5 @@
78
78
  ],
79
79
  "year": 2017
80
80
  },
81
- "gitHead": "ef89090bb19fc5bca23be5da8cfce05b82ff4ad1\n"
81
+ "gitHead": "85e2f0935b58bde5d165fbe754fafec5da0b731e\n"
82
82
  }