UNPKG

webdaw-modules

Version:

a set of modules for building a web-based DAW

9 lines (8 loc) 265 B
/** * Used to calculate the position of the song when the user * clicks somewhere in the score */ import { RepeatData } from "../musicxml/parser"; export declare const songPositionFromScore: (repeats: RepeatData[], barScore: number) => { barSong: number; };