10 lines
138 B
TypeScript
10 lines
138 B
TypeScript
import Beat from "@/Beat";
|
|
|
|
export default class Store {
|
|
private beats: Beat[];
|
|
|
|
constructor() {
|
|
this.beats = [];
|
|
}
|
|
|
|
} |