refactor: loads of sensible renaming

This commit is contained in:
Daniel Ledda
2022-04-03 14:29:56 +02:00
parent 1bfcd91132
commit 5b8e160608
31 changed files with 1364 additions and 1302 deletions

10
src/Store.ts Normal file
View File

@@ -0,0 +1,10 @@
import Beat from "@/Beat";
export default class Store {
private beats: Beat[];
constructor() {
this.beats = [];
}
}