@libraz/libcantus - v1.1.0
    Preparing search index...

    Type Alias DurationData

    A written duration: a base value, optional augmentation dots, and an optional tuplet ratio. Its length is base * (2 - 2^-dots) * normal / actual.

    type DurationData = {
        base: NoteValue;
        dots?: number;
        tuplet?: Tuplet;
    }
    Index
    base: NoteValue
    dots?: number

    Augmentation dots, 0 when absent; up to four are accepted.

    tuplet?: Tuplet