/** * Class that defines a time signature and provides helper methods. */ export interface TimeSignature { beats: number; beatType: number; }