File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11export { getContext , setContext } from "./core/Global" ;
2- import { BaseContext } from "./core/context/BaseContext " ;
2+ import { Context } from "./core/context/Context " ;
33export * from "./classes" ;
44export * from "./version" ;
55import { getContext } from "./core/Global" ;
@@ -10,16 +10,16 @@ export { supported } from "./core/context/AudioContext";
1010
1111/**
1212 * The current audio context time of the global {@link BaseContext}.
13- * @see {@link BaseContext .now }
13+ * @see {@link Context .now }
1414 * @category Core
1515 */
1616export function now ( ) : Seconds {
1717 return getContext ( ) . now ( ) ;
1818}
1919
2020/**
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 }
2323 * @category Core
2424 */
2525export function immediate ( ) : Seconds {
@@ -100,7 +100,7 @@ export function getDraw(): import("./core/util/Draw").DrawClass {
100100
101101/**
102102 * A reference to the global context
103- * @see {@link BaseContext }
103+ * @see {@link Context }
104104 * @deprecated Use {@link getContext} instead
105105 */
106106export const context = getContext ( ) ;
You can’t perform that action at this time.
0 commit comments