prolink-connect
    Preparing search index...

    Interface CuePoint

    Represents a single cue point. On older exports the label and color may be undefined.

    interface CuePoint {
        color?: CueColor;
        label?: string;
        offset: number;
        type: "cue_point";
    }
    Index

    Properties

    color?: CueColor

    RGB values of the hotcue color

    label?: string

    The comment associated to the cue point

    offset: number

    Number of milliseconds from the start of the track.

    type: "cue_point"