Interface TrackUpdateEvent

Fired when one or more properties of a track have been updated.

interface TrackUpdateEvent {
    date: Date;
    track: Track;
    type: "update";
}

Hierarchy (view full)

  • Event<"update">
    • TrackUpdateEvent

Properties

Properties

date: Date

The creation date of the event.

track: Track

The track that has been updated.

type: "update"

The type of the event.

Generated using TypeDoc