Documentation
    Preparing search index...

    Type Alias ParseChordParams

    The parameters accepted by the parseChord function.

    type ParseChordParams = {
        chordName?: string;
        includeOpenStrings?: boolean;
        input: string;
        system: FretboardSystem;
    }
    Index
    chordName?: string

    The chord name (e.g. C major, A7b9).

    includeOpenStrings?: boolean

    Shows the open string notes.

    input: string

    The chord input (e.g. x32010).

    The current fretboard system (needed to determine the note names).