Tone.js/test/helper/Connect.ts

10 lines
167 B
TypeScript
Raw Normal View History

2019-05-23 18:00:49 +00:00
import { Gain } from "Tone/core/context/Gain";
2019-04-12 14:37:47 +00:00
export function connectFrom(): Gain {
return new Gain();
}
export function connectTo(): Gain {
return new Gain();
}