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