Source

ui/handlers.ts

/**
 * @description Class representing an event handler
 * @summary Defines the structure for handling events in the UI decorators system
 * This class provides a foundation for managing and processing events that occur
 * within the UI components generated by the decorators.
 * @class EventHandler
 * @memberOf module:ui-decorators/ui
 */
export class EventHandler {
  /**
   * @description Creates an instance of EventHandler
   * @summary Initializes a new EventHandler object
   * This constructor currently doesn't take any parameters, but it can be
   * extended in the future to accept configuration options if needed.
   */
  constructor() {}
}