Documented syncing and updated zifferjs

This commit is contained in:
2023-12-11 22:36:28 +02:00
parent 491461e354
commit 2d3c48c1c1
9 changed files with 103 additions and 23 deletions

View File

@ -442,4 +442,9 @@ export abstract class AudibleEvent extends AbstractEvent {
update = (): void => {
// Overwrite in subclasses
};
cue = (functionName: string|Function): this => {
this.app.api.cue(functionName);
return this;
}
}