Skip to content

Commit

Permalink
✨ Add the tempo_follower_enabled property
Browse files Browse the repository at this point in the history
  • Loading branch information
leolabs committed May 1, 2024
1 parent 262bc13 commit 8cf68c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/ns/song.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ const gettableProps: (keyof GettableProperties)[] = [
"song_length",
"swing_amount",
"tempo",
"tempo_follower_enabled",
"tracks",
"visible_tracks",
];
Expand Down
3 changes: 3 additions & 0 deletions src/ns/song.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export interface GettableProperties {
song_length: number;
swing_amount: number;
tempo: number;
tempo_follower_enabled: boolean;
tracks: RawTrack[];
// view: never; - Not needed here
visible_tracks: RawTrack[];
Expand Down Expand Up @@ -104,6 +105,7 @@ export interface SettableProperties {
song_length: number;
swing_amount: number;
tempo: number;
tempo_follower_enabled: boolean;
visible_tracks: number;
}

Expand Down Expand Up @@ -145,6 +147,7 @@ export interface ObservableProperties {
song_length: number;
swing_amount: number;
tempo: number;
tempo_follower_enabled: boolean;
tracks: RawTrack[];
}

Expand Down

0 comments on commit 8cf68c8

Please sign in to comment.