This commit is contained in:
2021-08-22 12:05:54 +02:00
parent fdfad0b900
commit b1e65acda6
12 changed files with 1548 additions and 36 deletions

View File

@@ -0,0 +1,13 @@
import {BeatUnitType} from "./BeatUnit";
import Beat from "./Beat";
const beat = new Beat({
drumSchema: ["LH", "RH", "LF", "LR"],
timeSig: {
up: 3,
down: 4,
},
bars: 10,
});
console.log(beat.stringify());