@zenfs/dom 1.0.4 → 1.0.6

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.
@@ -1,5 +1,4 @@
1
1
  import type { DeviceDriver } from '@zenfs/core';
2
- import './audioworklet.d.ts';
3
2
  export interface DspOptions {
4
3
  audioContext?: AudioContext;
5
4
  }
@@ -1,4 +1,3 @@
1
- import './audioworklet.d.ts';
2
1
  if ('AudioWorkletProcessor' in globalThis) {
3
2
  class Dsp extends AudioWorkletProcessor {
4
3
  constructor() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenfs/dom",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "DOM backends for ZenFS",
5
5
  "funding": {
6
6
  "type": "individual",
@@ -33,7 +33,7 @@
33
33
  "exports": {
34
34
  ".": "./dist/index.js",
35
35
  "./*": "./dist/*",
36
- "./devices": "./dist/devices.js"
36
+ "./devices": "./dist/devices/index.js"
37
37
  },
38
38
  "scripts": {
39
39
  "format": "prettier --write .",