/** * Represents an event. */ export type EventMap = /** * Indicates the `tablesorter-initialized`-event. */ | "tablesorter-initialized" /** * Indicates the `tablesorter-ready`-event. */ | "tablesorter-ready" /** * Indicates the `refreshComplete`-event. */ | "refreshComplete" /** * Indicates the `updateComplete`-event. */ | "updateComplete" /** * Indicates the `widgetRemoveEnd`-event. */ | "widgetRemoveEnd" /** * Indicates the `sortStart`-event. */ | "sortStart" /** * Indicates the `sortBegin`-event. */ | "sortBegin" /** * Indicates the `sortEnd`-event. */ | "sortEnd";