Interface ViewChangeEvent

Fired when a view's enabled changes.

interface ViewChangeEvent {
    date: Date;
    type: "viewchange";
    view: View;
}

Hierarchy (view full)

  • Event<"viewchange">
    • ViewChangeEvent

Properties

Properties

date: Date

The creation date of the event.

type: "viewchange"

The type of the event.

view: View

The view that has been changed.

Generated using TypeDoc