@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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/package.json +10 -10
  3. package/write.d.ts +1 -1
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-12-12T10:11:58Z
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/dsp-io-wav",
3
- "version": "2.1.142",
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.12",
40
- "@thi.ng/binary": "^3.4.35",
41
- "@thi.ng/errors": "^2.5.18",
42
- "@thi.ng/transducers": "^9.2.8",
43
- "@thi.ng/transducers-binary": "^2.1.142"
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.47.9",
46
+ "@microsoft/api-extractor": "^7.48.0",
47
47
  "esbuild": "^0.24.0",
48
- "typedoc": "^0.26.7",
49
- "typescript": "^5.6.2"
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": "ef89090bb19fc5bca23be5da8cfce05b82ff4ad1\n"
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.