/** * Represents a parameterless trigger. */ export type ParameterlessTriggerNameMap = /** * Indicates the `sort`-trigger. */ | "sort" /** * Indicates the `applyWidgets`-trigger. */ | "applyWidgets" /** * Indicates the `appendCache`-trigger. */ | "appendCache" /** * Indicates the `update`-trigger. */ | "update" /** * Indicates the `updateRows`-trigger. */ | "updateRows" /** * Indicates the `updateCache`-trigger. */ | "updateCache" /** * Indicates the `updateHeaders`-trigger. */ | "updateHeaders" /** * Indicates the `updateAll`-trigger. */ | "updateAll" /** * Indicates the `search`-trigger. */ | "search" /** * Indicates the `resetToLoadState`-trigger. */ | "resetToLoadState" /** * Indicates the `destroy`-trigger. */ | "destroy" /** * Indicates the `filterReset`-trigger. */ | "filterReset" /** * Indicates the `filterResetSaved`-trigger. */ | "filterResetSaved" /** * Indicates the `filterAndSortReset`-trigger. */ | "filterAndSortReset" /** * Indicates the `saveSortReset`-trigger. */ | "saveSortReset" /** * Indicates the `enablePager`-trigger. */ | "enablePager" /** * Indicates the `disablePager`-trigger. */ | "disablePager" /** * Indicates the `pagerUpdate`-trigger. */ | "pagerUpdate" /** * Indicates the `destroyPager`-trigger. */ | "destroyPager";