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