tone 14.9.11 → 14.9.12

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.
@@ -20,6 +20,7 @@ export type ToneAudioNodeOptions = ToneWithContextOptions;
20
20
 
21
21
  /**
22
22
  * ToneAudioNode is the base class for classes which process audio.
23
+ * @category Core
23
24
  */
24
25
  export abstract class ToneAudioNode<Options extends ToneAudioNodeOptions = ToneAudioNodeOptions>
25
26
  extends ToneWithContext<Options> {
@@ -35,4 +35,5 @@ export { Unit };
35
35
 
36
36
  // export the debug stuff as Debug
37
37
  import * as debug from "./util/Debug";
38
+ /** @internal */
38
39
  export { debug };
@@ -52,6 +52,7 @@ export function deepEquals<T>(arrayA: T[], arrayB: T[]): boolean {
52
52
 
53
53
  /**
54
54
  * Convert an args array into an object.
55
+ * @internal
55
56
  */
56
57
  export function optionsFromArguments<T extends object>(
57
58
  defaults: T,
@@ -101,6 +102,7 @@ export function getDefaultsFromInstance<T>(instance: T): BaseToneOptions {
101
102
  /**
102
103
  * Returns the fallback if the given object is undefined.
103
104
  * Take an array of arguments and return a formatted options object.
105
+ * @internal
104
106
  */
105
107
  export function defaultArg<T>(given: T, fallback: T): T {
106
108
  if (isUndef(given)) {
package/Tone/version.ts CHANGED
@@ -1 +1 @@
1
- export const version: string = "14.9.11";
1
+ export const version: string = "14.9.12";