@thi.ng/dsp-io-wav 2.1.142 → 2.1.144
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/package.json +10 -10
- package/write.d.ts +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/dsp-io-wav",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.144",
|
|
4
4
|
"description": "WAV file format generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/api": "^8.11.
|
|
40
|
-
"@thi.ng/binary": "^3.4.
|
|
41
|
-
"@thi.ng/errors": "^2.5.
|
|
42
|
-
"@thi.ng/transducers": "^9.2.
|
|
43
|
-
"@thi.ng/transducers-binary": "^2.1.
|
|
39
|
+
"@thi.ng/api": "^8.11.14",
|
|
40
|
+
"@thi.ng/binary": "^3.4.37",
|
|
41
|
+
"@thi.ng/errors": "^2.5.20",
|
|
42
|
+
"@thi.ng/transducers": "^9.2.10",
|
|
43
|
+
"@thi.ng/transducers-binary": "^2.1.144"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@microsoft/api-extractor": "^7.
|
|
46
|
+
"@microsoft/api-extractor": "^7.48.0",
|
|
47
47
|
"esbuild": "^0.24.0",
|
|
48
|
-
"typedoc": "^0.
|
|
49
|
-
"typescript": "^5.
|
|
48
|
+
"typedoc": "^0.27.4",
|
|
49
|
+
"typescript": "^5.7.2"
|
|
50
50
|
},
|
|
51
51
|
"keywords": [
|
|
52
52
|
"16bit",
|
|
@@ -90,5 +90,5 @@
|
|
|
90
90
|
"parent": "@thi.ng/dsp",
|
|
91
91
|
"year": 2020
|
|
92
92
|
},
|
|
93
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "34ac95538d96f046090fef5fd3a1dc36d54663d5\n"
|
|
94
94
|
}
|
package/write.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ export declare const wavHeader: (spec: WavSpec) => BinStructItem[];
|
|
|
36
36
|
* @param spec -
|
|
37
37
|
* @param src -
|
|
38
38
|
*/
|
|
39
|
-
export declare const wavByteArray: (spec: WavSpec, src: Iterable<number>) => Uint8Array
|
|
39
|
+
export declare const wavByteArray: (spec: WavSpec, src: Iterable<number>) => Uint8Array<ArrayBuffer>;
|
|
40
40
|
/**
|
|
41
41
|
* Similar to {@link wavByteArray}, but yields an iterator of the result
|
|
42
42
|
* bytes, not an actual byte array.
|