@thi.ng/rle-pack 3.1.81 → 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 +1 -1
- package/index.d.ts +2 -2
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
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 |
|
|
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.
|
|
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",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"build:decl": "tsc --declaration --emitDeclarationOnly",
|
|
29
29
|
"build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
|
|
30
30
|
"clean": "bun ../../tools/src/clean-package.ts",
|
|
31
|
-
"doc": "typedoc --
|
|
31
|
+
"doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
|
|
32
32
|
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
|
|
33
33
|
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
|
|
34
34
|
"pub": "yarn npm publish --access public",
|
|
@@ -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.
|
|
40
|
-
"@thi.ng/errors": "^2.5.
|
|
39
|
+
"@thi.ng/bitstream": "^2.4.5",
|
|
40
|
+
"@thi.ng/errors": "^2.5.19"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@microsoft/api-extractor": "^7.
|
|
43
|
+
"@microsoft/api-extractor": "^7.48.0",
|
|
44
44
|
"esbuild": "^0.24.0",
|
|
45
|
-
"typedoc": "^0.26.
|
|
46
|
-
"typescript": "^5.
|
|
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": "
|
|
81
|
+
"gitHead": "85e2f0935b58bde5d165fbe754fafec5da0b731e\n"
|
|
82
82
|
}
|