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 +5 -5
- package/Tone/version.ts +1 -1
- package/build/Tone.js +1 -1
- package/build/Tone.js.map +1 -1
- package/build/esm/index.d.ts +5 -6
- package/build/esm/index.js +4 -4
- package/build/esm/version.js +1 -1
- package/package.json +1 -1
package/Tone/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { getContext, setContext } from "./core/Global";
|
|
2
|
-
import {
|
|
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
|
|
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
|
|
22
|
-
* @see {@link
|
|
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
|
|
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.
|
|
1
|
+
export const version: string = "14.9.14";
|