export class AbcGuitarChord {
  constructor(private readonly chord: ChordPrimitives) {}

  toString() {
    return `"${this.chord.abbreviation}"`;