UNPKG

webdaw-modules

Version:

a set of modules for building a web-based DAW

6 lines (4 loc) 162 B
import { Track } from "./createTrack"; export const setTrackOutput = ({ track, output }: { track: Track; output: string }) => { track.outputs.push(output); };