import { Options } from '@angular-slider/ngx-slider'; export class FilterConfigConstants { static LOCATION_SLIDER_DATA: Options = { floor: 25, ceil: 500, step: 5, showSelectionBar: true, hideLimitLabels: true, }; static MONEY_SLIDER_DATA: Options = { floor: 0, ceil: 20000, step: 1, showSelectionBar: true, hideLimitLabels: true, noSwitching: true, pushRange: true, minRange: 2000, }; static MILES_SLIDER_DATA: Options = { floor: 0, ceil: 5000, step: 1, showSelectionBar: true, hideLimitLabels: true, noSwitching: true, pushRange: true, minRange: 10, }; static VIOLATION_SLIDER_DATA: Options = { floor: 0, ceil: 5, step: 1, showSelectionBar: true, hideLimitLabels: false, noSwitching: true, pushRange: true, minRange: 1, }; }