fix typing and build errors

This commit is contained in:
2023-11-18 21:18:25 +01:00
parent a21fcd47f2
commit ddc17d28a9
14 changed files with 82 additions and 94 deletions

View File

@ -2094,7 +2094,7 @@ export class UserAPI {
return this.app.clock.nudge;
};
public bpm = (n?: number): number => {
public tempo = (n?: number): number => {
/**
* Sets or returns the current bpm.
*
@ -2107,7 +2107,7 @@ export class UserAPI {
this.app.clock.bpm = n;
return n;
};
tempo = this.bpm;
// tempo = this.bpm;
public bpb = (n?: number): number => {
/**