webdaw-modules
Version:
a set of modules for building a web-based DAW
15 lines (14 loc) • 367 B
TypeScript
import { Song } from "./createSong";
import { MIDINote } from "./createNotes";
declare type Args = {
song: Song;
index: number;
millis: number;
activeNotes: MIDINote[];
};
export declare const getActiveNotes: ({ song, index, millis, activeNotes }: Args) => {
index: number;
activeNotes: MIDINote[];
passiveNotes: MIDINote[];
};
export {};