web-music-score 0.0.1 → 6.0.0-pre.0

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 (42) hide show
  1. package/CHANGELOG.md +197 -0
  2. package/LICENSE +62 -1
  3. package/README.md +46 -2
  4. package/dist/audio/index.d.ts +50 -0
  5. package/dist/audio/index.js +1832 -0
  6. package/dist/audio/index.mjs +92 -0
  7. package/dist/audio-cg/index.d.ts +21 -0
  8. package/dist/audio-cg/index.js +17568 -0
  9. package/dist/audio-cg/index.mjs +90 -0
  10. package/dist/audio-synth/index.d.ts +15 -0
  11. package/dist/audio-synth/index.js +18497 -0
  12. package/dist/audio-synth/index.mjs +63 -0
  13. package/dist/chunk-2NTPGV6U.mjs +101 -0
  14. package/dist/chunk-FCR7WBDV.mjs +37 -0
  15. package/dist/chunk-OKY6DMTT.mjs +18381 -0
  16. package/dist/chunk-OZZ3NSJS.mjs +267 -0
  17. package/dist/chunk-SNZ77AGL.mjs +11 -0
  18. package/dist/chunk-URLQD334.mjs +3841 -0
  19. package/dist/core/index.d.ts +31 -0
  20. package/dist/core/index.js +74 -0
  21. package/dist/core/index.mjs +22 -0
  22. package/dist/iife/audio-cg.global.js +220 -0
  23. package/dist/iife/index.global.js +228 -0
  24. package/dist/instrument-DS-9C6_8.d.ts +44 -0
  25. package/dist/music-objects-DLmp5uL6.d.ts +2398 -0
  26. package/dist/note-RVXvpfyV.d.ts +306 -0
  27. package/dist/pieces/index.d.ts +46 -0
  28. package/dist/pieces/index.js +79 -0
  29. package/dist/pieces/index.mjs +50 -0
  30. package/dist/react-ui/index.d.ts +86 -0
  31. package/dist/react-ui/index.js +132 -0
  32. package/dist/react-ui/index.mjs +96 -0
  33. package/dist/scale-B1M10_fu.d.ts +230 -0
  34. package/dist/score/index.d.ts +466 -0
  35. package/dist/score/index.js +13927 -0
  36. package/dist/score/index.mjs +10081 -0
  37. package/dist/tempo-D-JF-8b_.d.ts +409 -0
  38. package/dist/theory/index.d.ts +78 -0
  39. package/dist/theory/index.js +4816 -0
  40. package/dist/theory/index.mjs +1986 -0
  41. package/package.json +131 -3
  42. package/workspace.code-workspace +0 -9
@@ -0,0 +1,15 @@
1
+ import { I as Instrument } from '../instrument-DS-9C6_8.js';
2
+
3
+ /**
4
+ * Make this module "audio-synth" in typedoc instead of "audio-instruments/audio-synth".
5
+ * @module audio-synth
6
+ */
7
+
8
+ /**
9
+ * Export synthesizer instrument object.
10
+ *
11
+ * Synthesizer is default instrument and enabled out of the box.
12
+ */
13
+ declare const Synthesizer: Instrument;
14
+
15
+ export { Synthesizer };