import "jquery"; /** * Provides the functionality to handle common events of the `tablesorter`. */ export interface CommonEventHandler { /** * Handles common events of the `tablesorter`. * * @param eventArgs * An object that contains event data. */ (eventArgs: JQuery.TriggeredEvent): void; }