/** * Provides css-classes to apply to pager-controls. */ export interface PagerClasses { /** * A set of css-classes to apply to the container. */ container?: string | undefined; /** * The css-class to apply to disabled pager-controls. */ disabled?: string | undefined; /** * The css-class to apply to the table-row which displays the error-message in case of an ajax-error. */ errorRow?: string | undefined; }