import "jquery"; import { TablesorterConfigurationStore } from "../System/TablesorterConfigurationStore"; import { PagerConfigurationStore } from "./PagerConfigurationStore"; /** * Provides the functionality to handle pager-events of the `tablesorter`. */ export interface PagerEventHandler { /** * Handles pager-events of the `tablesorter`. * * @param eventArgs * An object that contains event data. * * @param options * Either the options of the configuration of the tablesorter or the configuration of the pager-widget. */ ( eventArgs: JQuery.TriggeredEvent, options: TablesorterConfigurationStore | PagerConfigurationStore, ): void; }