/** @since 5.0 */
export default abstract class VertexAddEvent {
  /**
   * Set to true when `preventDefault()` is called.
   *
   * @default false
   * @since 5.0
   */
  defaultPrevented: boolean;
  /**
   * The type of the event.
   *
   * @since 5.0
   */
  readonly type: "vertex-add";
  /**
   * Index of the vertex where the event was applied.
   *
   * @since 5.0
   */
  vertexIndex: number;
  /**
   * Two-dimensional array of numbers representing the coordinates of each vertex
   * that make the geometry.
   *
   * @since 5.0
   */
  vertices: number[][];
  /**
   * Prevents event propagation bubbling up the event chain.
   *
   * @since 5.0
   */
  preventDefault(): void;
}