mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 16:48:00 +00:00
b58577ed5e
for global build
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
export { getContext, setContext } from "./core/Global";
|
|
export * from "./core/index";
|
|
export * from "./source/index";
|
|
|
|
import { getContext } from "./core/Global";
|
|
/**
|
|
* The current audio context time
|
|
*/
|
|
export function now(): Seconds {
|
|
return getContext().now();
|
|
}
|