Event that fires when an update occurs.

interface UpdateEvent {
    data: boolean;
    type: "update";
}

Properties

Properties

data: boolean

true to force the update, otherwise the update is delayed until the next animation frame.

type: "update"

Event type.