chord top-level property
final
A dictionary of chords: a function that given a chord type returns an array of intervals
@function
@example
import { chord } from "tonal-dictionary"
chord("Maj7") // => "1P", "3M", ...
chord.names(); // => "Maj3", ...
Implementation
final chord = Dictionary(cdata);