@onjmin/chord-parser
    Preparing search index...

    Interface ChordEvent

    parseChords が返す、1コード分の時刻付きイベント。

    interface ChordEvent {
        chord: string;
        duration: number;
        key: string;
        when: number;
    }
    Index

    Properties

    Properties

    chord: string

    コードのクオリティ部分(例: "maj7", "m7", "dim")。ルートのみなら ""。

    duration: number

    持続時間(秒)。

    key: string

    ルート音文字列(例: "C", "G", "F#")。

    when: number

    再生開始時刻(秒)。