feat: more ui, looping
This commit is contained in:
11
src/BeatLike.ts
Normal file
11
src/BeatLike.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import {IPublisher} from "./Publisher";
|
||||
import {BeatEvents} from "./Beat";
|
||||
|
||||
export default interface BeatLike extends IPublisher<BeatEvents>{
|
||||
setBarCount(barCount: number): void;
|
||||
getBarCount(): void;
|
||||
setLooping(isLooping: boolean): void;
|
||||
isLooping(): boolean;
|
||||
setLoopLength(loopLength: number): void;
|
||||
getLoopLength(): number;
|
||||
}
|
||||
Reference in New Issue
Block a user