tone 14.9.13 → 14.9.14

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/Tone/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { getContext, setContext } from "./core/Global";
2
- import { BaseContext } from "./core/context/BaseContext";
2
+ import { Context } from "./core/context/Context";
3
3
  export * from "./classes";
4
4
  export * from "./version";
5
5
  import { getContext } from "./core/Global";
@@ -10,7 +10,7 @@ export { supported } from "./core/context/AudioContext";
10
10
 
11
11
  /**
12
12
  * The current audio context time of the global {@link BaseContext}.
13
- * @see {@link BaseContext.now}
13
+ * @see {@link Context.now}
14
14
  * @category Core
15
15
  */
16
16
  export function now(): Seconds {
@@ -18,8 +18,8 @@ export function now(): Seconds {
18
18
  }
19
19
 
20
20
  /**
21
- * The current audio context time of the global {@link BaseContext} without the {@link BaseContext.lookAhead}
22
- * @see {@link BaseContext.immediate}
21
+ * The current audio context time of the global {@link Context} without the {@link Context.lookAhead}
22
+ * @see {@link Context.immediate}
23
23
  * @category Core
24
24
  */
25
25
  export function immediate(): Seconds {
@@ -100,7 +100,7 @@ export function getDraw(): import("./core/util/Draw").DrawClass {
100
100
 
101
101
  /**
102
102
  * A reference to the global context
103
- * @see {@link BaseContext}
103
+ * @see {@link Context}
104
104
  * @deprecated Use {@link getContext} instead
105
105
  */
106
106
  export const context = getContext();
package/Tone/version.ts CHANGED
@@ -1 +1 @@
1
- export const version: string = "14.9.13";
1
+ export const version: string = "14.9.14";