mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-15 00:07:08 +00:00
parent
7ec918e5b4
commit
0ca04b9ac5
2 changed files with 4 additions and 4 deletions
|
@ -1,10 +1,10 @@
|
|||
export * from "./clock/Clock";
|
||||
export * from "./clock/Transport";
|
||||
// export * from "./clock/Transport";
|
||||
|
||||
export * from "./context/Context";
|
||||
export * from "./context/BaseContext";
|
||||
export * from "./context/Delay";
|
||||
export * from "./context/Destination";
|
||||
// export * from "./context/Destination";
|
||||
export * from "./context/Gain";
|
||||
export * from "./context/Offline";
|
||||
export * from "./context/OfflineContext";
|
||||
|
@ -19,7 +19,7 @@ export * from "./type/Time";
|
|||
export * from "./type/Ticks";
|
||||
export * from "./type/TransportTime";
|
||||
|
||||
export * from "./util/Draw";
|
||||
// export * from "./util/Draw";
|
||||
export * from "./util/Emitter";
|
||||
export * from "./util/IntervalTimeline";
|
||||
export * from "./util/StateTimeline";
|
||||
|
|
|
@ -10,7 +10,7 @@ import { TimeClass } from "./core/type/Time";
|
|||
import { TransportTimeClass } from "./core/type/TransportTime";
|
||||
import { isDefined, isFunction } from "./core/util/TypeCheck";
|
||||
import { omitFromObject } from "./core/util/Defaults";
|
||||
import { Draw } from "./classes";
|
||||
import { Draw } from "./core/util/Draw";
|
||||
|
||||
type ClassesWithoutSingletons = Omit<typeof Classes, "Transport" | "Destination" | "Draw">;
|
||||
|
||||
|
|
Loading…
Reference in a new issue