2
0
Fork 0
mirror of https://github.com/Tonejs/Tone.js synced 2025-01-26 02:25:06 +00:00
Tone.js/test/helper/Connect.ts
2019-05-23 14:00:49 -04:00

9 lines
167 B
TypeScript

import { Gain } from "Tone/core/context/Gain";
export function connectFrom(): Gain {
return new Gain();
}
export function connectTo(): Gain {
return new Gain();
}